本文整理匯總了Golang中launchpad/net/juju-core/state.Machine.SetMongoPassword方法的典型用法代碼示例。如果您正苦於以下問題:Golang Machine.SetMongoPassword方法的具體用法?Golang Machine.SetMongoPassword怎麽用?Golang Machine.SetMongoPassword使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類launchpad/net/juju-core/state.Machine
的用法示例。
在下文中一共展示了Machine.SetMongoPassword方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: setupAuthentication
func (p *Provisioner) setupAuthentication(m *state.Machine) (*state.Info, *api.Info, error) {
password, err := utils.RandomPassword()
if err != nil {
return nil, nil, fmt.Errorf("cannot make password for machine %v: %v", m, err)
}
if err := m.SetMongoPassword(password); err != nil {
return nil, nil, fmt.Errorf("cannot set password for machine %v: %v", m, err)
}
stateInfo := *p.stateInfo
stateInfo.Tag = m.Tag()
stateInfo.Password = password
apiInfo := *p.apiInfo
apiInfo.Tag = m.Tag()
apiInfo.Password = password
return &stateInfo, &apiInfo, nil
}
示例2: SetupAuthentication
func (auth *simpleAuth) SetupAuthentication(machine *state.Machine) (*state.Info, *api.Info, error) {
password, err := utils.RandomPassword()
if err != nil {
return nil, nil, fmt.Errorf("cannot make password for machine %v: %v", machine, err)
}
if err := machine.SetPassword(password); err != nil {
return nil, nil, fmt.Errorf("cannot set API password for machine %v: %v", machine, err)
}
if err := machine.SetMongoPassword(password); err != nil {
return nil, nil, fmt.Errorf("cannot set mongo password for machine %v: %v", machine, err)
}
stateInfo := *auth.stateInfo
stateInfo.Tag = machine.Tag()
stateInfo.Password = password
apiInfo := *auth.apiInfo
apiInfo.Tag = machine.Tag()
apiInfo.Password = password
return &stateInfo, &apiInfo, nil
}