本文整理汇总了Golang中github.com/juju/juju/jujuclient.ControllerStore.ControllerByName方法的典型用法代码示例。如果您正苦于以下问题:Golang ControllerStore.ControllerByName方法的具体用法?Golang ControllerStore.ControllerByName怎么用?Golang ControllerStore.ControllerByName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/jujuclient.ControllerStore
的用法示例。
在下文中一共展示了ControllerStore.ControllerByName方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: setEndpointAddressAndHostname
func setEndpointAddressAndHostname(c *gc.C, store jujuclient.ControllerStore, addr, host string) {
// Populate the controller details with known address and hostname.
details, err := store.ControllerByName("local.my-controller")
c.Assert(err, jc.ErrorIsNil)
details.APIEndpoints = []string{addr}
details.UnresolvedAPIEndpoints = []string{host}
err = store.UpdateController("local.my-controller", *details)
c.Assert(err, jc.ErrorIsNil)
}
示例2: UpdateControllerDetailsFromLogin
// UpdateControllerDetailsFromLogin writes any new api addresses and other relevant details
// to the client controller file.
// Controller may be specified by a UUID or name, and must already exist.
func UpdateControllerDetailsFromLogin(
store jujuclient.ControllerStore, controllerName string,
params UpdateControllerParams,
) error {
controllerDetails, err := store.ControllerByName(controllerName)
if err != nil {
return errors.Trace(err)
}
return updateControllerDetailsFromLogin(store, controllerName, controllerDetails, params)
}
示例3: UpdateControllerAddresses
// UpdateControllerAddresses writes any new api addresses to the client controller file.
// Controller may be specified by a UUID or name, and must already exist.
func UpdateControllerAddresses(
store jujuclient.ControllerStore, controllerName string,
currentHostPorts [][]network.HostPort, addrConnectedTo ...network.HostPort,
) error {
controllerDetails, err := store.ControllerByName(controllerName)
if err != nil {
return errors.Trace(err)
}
return updateControllerAddresses(
store, controllerName, controllerDetails,
currentHostPorts, addrConnectedTo...,
)
}
示例4: ResolveControllerName
// ResolveControllerName returns the canonical name of a controller given
// an unambiguous identifier for that controller.
// Locally created controllers (i.e. those whose names begin with "local.")
// may be identified with or without the "local." prefix if there exists no
// other controller in the store with the same unprefixed name.
func ResolveControllerName(store jujuclient.ControllerStore, controllerName string) (string, error) {
_, err := store.ControllerByName(controllerName)
if err == nil {
return controllerName, nil
}
if !errors.IsNotFound(err) {
return "", err
}
var secondErr error
localName := "local." + controllerName
_, secondErr = store.ControllerByName(localName)
// If fallback name not found, return the original error.
if errors.IsNotFound(secondErr) {
return "", err
}
return localName, secondErr
}
示例5: Destroy
// Destroy destroys the controller and, if successful,
// its associated configuration data from the given store.
func Destroy(
controllerName string,
env Environ,
store jujuclient.ControllerStore,
) error {
details, err := store.ControllerByName(controllerName)
if err != nil && !errors.IsNotFound(err) {
return errors.Trace(err)
}
if err := env.DestroyController(details.ControllerUUID); err != nil {
return errors.Trace(err)
}
err = store.RemoveController(controllerName)
if err != nil && !errors.IsNotFound(err) {
return errors.Trace(err)
}
return nil
}