-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip bootstrap after provisioning #6
Comments
So, to provision a few machines with the |
Yes @jjasghar , exactly
So, is it possible to provision a machine and get the IP of the machine to use it further differently, out of the regualr flow. |
I put some thought into this, and no, i think this is out of scope (for the time being) of this gem. The point of using Though, in your use case, PowerCLI can do something like the following if you needed: $Cluster = Get-Cluster -Name Cluster
For ($i=0; $i -le 5; $i++) {
New-VM -Name vm$i -Template TEMPLATE -ResourcePool $Cluster
} or even teraform:
There's a chance I might come across this down the line, but it'll be unlikely in the near future. |
@shanmugakarna interestingly after talking to @tyler-ball it's actually already built into If you do something like: machine 'testing-ready' do
tag 'mydb_master'
action :ready
end Notice the |
Thank you so much @jjasghar. Sorry for the late reply. Its really awesome, it works perfect. |
Hi,
Is it possible to skip bootstrapping the node after provisioning, and just use the IP of the node else where.
Having a requirement, that does not need the provisioned node to be part of chef
thanks
The text was updated successfully, but these errors were encountered: