本文整理匯總了Golang中github.com/juju/juju/state/api/provisioner.Machine.SetInstanceInfo方法的典型用法代碼示例。如果您正苦於以下問題:Golang Machine.SetInstanceInfo方法的具體用法?Golang Machine.SetInstanceInfo怎麽用?Golang Machine.SetInstanceInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/juju/juju/state/api/provisioner.Machine
的用法示例。
在下文中一共展示了Machine.SetInstanceInfo方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: startMachine
func (task *provisionerTask) startMachine(machine *apiprovisioner.Machine) error {
provisioningInfo, err := task.provisioningInfo(machine)
if err != nil {
return err
}
possibleTools, err := task.possibleTools(provisioningInfo.Series, provisioningInfo.Constraints)
if err != nil {
return task.setErrorStatus("cannot find tools for machine %q: %v", machine, err)
}
inst, metadata, networkInfo, err := task.broker.StartInstance(environs.StartInstanceParams{
Constraints: provisioningInfo.Constraints,
Tools: possibleTools,
MachineConfig: provisioningInfo.MachineConfig,
Placement: provisioningInfo.Placement,
DistributionGroup: machine.DistributionGroup,
})
if err != nil {
// Set the state to error, so the machine will be skipped next
// time until the error is resolved, but don't return an
// error; just keep going with the other machines.
return task.setErrorStatus("cannot start instance for machine %q: %v", machine, err)
}
nonce := provisioningInfo.MachineConfig.MachineNonce
networks, ifaces := task.prepareNetworkAndInterfaces(networkInfo)
err = machine.SetInstanceInfo(inst.Id(), nonce, metadata, networks, ifaces)
if err != nil && params.IsCodeNotImplemented(err) {
return fmt.Errorf("cannot provision instance %v for machine %q with networks: not implemented", inst.Id(), machine)
} else if err == nil {
logger.Infof("started machine %s as instance %s with hardware %q, networks %v, interfaces %v", machine, inst.Id(), metadata, networks, ifaces)
return nil
}
// We need to stop the instance right away here, set error status and go on.
task.setErrorStatus("cannot register instance for machine %v: %v", machine, err)
if err := task.broker.StopInstances(inst.Id()); err != nil {
// We cannot even stop the instance, log the error and quit.
logger.Errorf("cannot stop instance %q for machine %v: %v", inst.Id(), machine, err)
return err
}
return nil
}