本文整理汇总了Golang中github.com/juju/juju/agent.Agent.CurrentConfig方法的典型用法代码示例。如果您正苦于以下问题:Golang Agent.CurrentConfig方法的具体用法?Golang Agent.CurrentConfig怎么用?Golang Agent.CurrentConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/agent.Agent
的用法示例。
在下文中一共展示了Agent.CurrentConfig方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: newWorker
func newWorker(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
w, err := NewWorker(keyupdater.NewState(apiCaller), a.CurrentConfig())
if err != nil {
return nil, errors.Annotate(err, "cannot start ssh auth-keys updater worker")
}
return w, nil
}
示例2: newWorker
func newWorker(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
cfg := a.CurrentConfig()
// Grab the tag and ensure that it's for a machine.
tag, ok := cfg.Tag().(names.MachineTag)
if !ok {
return nil, errors.New("this manifold may only be used inside a machine agent")
}
// Get the machine agent's jobs.
// TODO(fwereade): this functionality should be on the
// deployer facade instead.
agentFacade := apiagent.NewState(apiCaller)
entity, err := agentFacade.Entity(tag)
if err != nil {
return nil, err
}
var isModelManager bool
for _, job := range entity.Jobs() {
if job == multiwatcher.JobManageModel {
isModelManager = true
break
}
}
if !isModelManager {
return nil, dependency.ErrMissing
}
return NewResumer(apiresumer.NewAPI(apiCaller)), nil
}
示例3: Manifold
// Manifold returns a dependency.Manifold which wraps the machine
// agent's voyeur.Value which gets set whenever it the machine agent's
// config is changed. Whenever the config is updated the presence of
// state serving info is checked and if state serving info was added
// or removed the manifold worker will bounce itself.
//
// The manifold offes a single boolean output which will be true if
// state serving info is available (i.e. the machine agent should be a
// state server) and false otherwise.
//
// This manifold is intended to be used as a dependency for the state
// manifold.
func Manifold(config ManifoldConfig) dependency.Manifold {
return dependency.Manifold{
Inputs: []string{config.AgentName},
Start: func(getResource dependency.GetResourceFunc) (worker.Worker, error) {
var a agent.Agent
if err := getResource(config.AgentName, &a); err != nil {
return nil, err
}
if config.AgentConfigChanged == nil {
return nil, errors.NotValidf("nil AgentConfigChanged")
}
if _, ok := a.CurrentConfig().Tag().(names.MachineTag); !ok {
return nil, errors.New("manifold can only be used with a machine agent")
}
w := &stateConfigWatcher{
agent: a,
agentConfigChanged: config.AgentConfigChanged,
}
go func() {
defer w.tomb.Done()
w.tomb.Kill(w.loop())
}()
return w, nil
},
Output: outputFunc,
}
}
示例4: newWorker
func (config MachineManifoldConfig) newWorker(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
if config.Clock == nil {
return nil, dependency.ErrMissing
}
cfg := a.CurrentConfig()
api, err := storageprovisioner.NewState(apiCaller, cfg.Tag())
if err != nil {
return nil, errors.Trace(err)
}
tag, ok := cfg.Tag().(names.MachineTag)
if !ok {
return nil, errors.Errorf("this manifold may only be used inside a machine agent")
}
storageDir := filepath.Join(cfg.DataDir(), "storage")
w, err := NewStorageProvisioner(Config{
Scope: tag,
StorageDir: storageDir,
Volumes: api,
Filesystems: api,
Life: api,
Registry: provider.CommonStorageProviders(),
Machines: api,
Status: api,
Clock: config.Clock,
})
if err != nil {
return nil, errors.Trace(err)
}
return w, nil
}
示例5: newWorker
// newWorker trivially wraps NewWorker for use in a engine.AgentAPIManifold.
func newWorker(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
cfg := a.CurrentConfig()
// Grab the tag and ensure that it's for a machine.
tag, ok := cfg.Tag().(names.MachineTag)
if !ok {
return nil, errors.New("this manifold may only be used inside a machine agent")
}
// Get the machine agent's jobs.
entity, err := apiagent.NewState(apiCaller).Entity(tag)
if err != nil {
return nil, err
}
var isModelManager bool
for _, job := range entity.Jobs() {
if job == multiwatcher.JobManageModel {
isModelManager = true
break
}
}
if !isModelManager {
return nil, dependency.ErrMissing
}
return NewWorker(cfg)
}
示例6: startFunc
// startFunc returns a StartFunc that creates a worker based on the manifolds
// named in the supplied config.
func startFunc(config ManifoldConfig) dependency.StartFunc {
return func(getResource dependency.GetResourceFunc) (worker.Worker, error) {
// Get dependencies and open a connection.
var a agent.Agent
if err := getResource(config.AgentName, &a); err != nil {
return nil, err
}
conn, err := openConnection(a)
if err != nil {
return nil, errors.Annotate(err, "cannot open api")
}
// Add the environment uuid to agent config if not present.
currentConfig := a.CurrentConfig()
if currentConfig.Environment().Id() == "" {
err := a.ChangeConfig(func(setter agent.ConfigSetter) error {
environTag, err := conn.EnvironTag()
if err != nil {
return errors.Annotate(err, "no environment uuid set on api")
}
return setter.Migrate(agent.MigrateParams{
Environment: environTag,
})
})
if err != nil {
logger.Warningf("unable to save environment uuid: %v", err)
// Not really fatal, just annoying.
}
}
// Return the worker.
return newApiConnWorker(conn)
}
}
示例7: getAPIAddresses
func getAPIAddresses(a agent.Agent) []string {
config := a.CurrentConfig()
addrs, err := config.APIAddresses()
if err != nil {
logger.Errorf("retrieving API addresses: %s", err)
addrs = nil
}
sort.Strings(addrs)
return addrs
}
示例8: Manifold
// Manifold returns a manifold whose worker which wraps a
// *state.State, which is in turn wrapper by a StateTracker. It will
// exit if the State's associated mongodb session dies.
func Manifold(config ManifoldConfig) dependency.Manifold {
return dependency.Manifold{
Inputs: []string{
config.AgentName,
config.StateConfigWatcherName,
},
Start: func(context dependency.Context) (worker.Worker, error) {
// First, a sanity check.
if config.OpenState == nil {
return nil, errors.New("OpenState is nil in config")
}
// Get the agent.
var agent coreagent.Agent
if err := context.Get(config.AgentName, &agent); err != nil {
return nil, err
}
// Confirm we're running in a state server by asking the
// stateconfigwatcher manifold.
var haveStateConfig bool
if err := context.Get(config.StateConfigWatcherName, &haveStateConfig); err != nil {
return nil, err
}
if !haveStateConfig {
return nil, dependency.ErrMissing
}
st, err := config.OpenState(agent.CurrentConfig())
if err != nil {
return nil, errors.Trace(err)
}
stTracker := newStateTracker(st)
pingInterval := config.PingInterval
if pingInterval == 0 {
pingInterval = defaultPingInterval
}
w := &stateWorker{
stTracker: stTracker,
pingInterval: pingInterval,
}
go func() {
defer w.tomb.Done()
w.tomb.Kill(w.loop())
if err := stTracker.Done(); err != nil {
logger.Errorf("error releasing state: %v", err)
}
}()
return w, nil
},
Output: outputFunc,
}
}
示例9: OnlyConnect
// OnlyConnect logs into the API using the supplied agent's credentials.
func OnlyConnect(a agent.Agent, apiOpen api.OpenFunc) (api.Connection, error) {
agentConfig := a.CurrentConfig()
info, ok := agentConfig.APIInfo()
if !ok {
return nil, errors.New("API info not available")
}
conn, _, err := connectFallback(apiOpen, info, agentConfig.OldPassword())
if err != nil {
return nil, errors.Trace(err)
}
return conn, nil
}
示例10: newWorker
func newWorker(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
apiConn, ok := apiCaller.(api.Connection)
if !ok {
return nil, errors.New("unable to obtain api.Connection")
}
w, err := NewWorker(keyupdater.NewState(apiConn), a.CurrentConfig())
if err != nil {
return nil, errors.Annotate(err, "cannot start ssh auth-keys updater worker")
}
return w, nil
}
示例11: ServingInfoSetterManifold
// ServingInfoSetterManifold defines a simple start function which
// runs after the API connection has come up. If the machine agent is
// a controller, it grabs the state serving info over the API and
// records it to agent configuration, and then stops.
func ServingInfoSetterManifold(config ServingInfoSetterConfig) dependency.Manifold {
return dependency.Manifold{
Inputs: []string{
config.AgentName,
config.APICallerName,
},
Start: func(context dependency.Context) (worker.Worker, error) {
// Get the agent.
var agent coreagent.Agent
if err := context.Get(config.AgentName, &agent); err != nil {
return nil, err
}
// Grab the tag and ensure that it's for a machine.
tag, ok := agent.CurrentConfig().Tag().(names.MachineTag)
if !ok {
return nil, errors.New("agent's tag is not a machine tag")
}
// Get API connection.
var apiCaller base.APICaller
if err := context.Get(config.APICallerName, &apiCaller); err != nil {
return nil, err
}
apiState := apiagent.NewState(apiCaller)
// If the machine needs State, grab the state serving info
// over the API and write it to the agent configuration.
machine, err := apiState.Entity(tag)
if err != nil {
return nil, err
}
for _, job := range machine.Jobs() {
if job.NeedsState() {
info, err := apiState.StateServingInfo()
if err != nil {
return nil, errors.Errorf("cannot get state serving info: %v", err)
}
err = agent.ChangeConfig(func(config coreagent.ConfigSetter) error {
config.SetStateServingInfo(info)
return nil
})
if err != nil {
return nil, err
}
}
}
// All is well - we're done (no actual worker is actually returned).
return nil, dependency.ErrUninstall
},
}
}
示例12: start
// start is used by util.AgentApiManifold to create a StartFunc.
func (config ManifoldConfig) start(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
machineTag, ok := a.CurrentConfig().Tag().(names.MachineTag)
if !ok {
return nil, errors.Errorf("this manifold can only be used inside a machine")
}
machineActionsFacade := config.NewFacade(apiCaller)
return config.NewWorker(WorkerConfig{
Facade: machineActionsFacade,
MachineTag: machineTag,
HandleAction: HandleAction,
})
}
示例13: newWorker
// newWorker creates a degenerate worker that provides access to the metrics
// spool directory path.
func newWorker(a agent.Agent) (worker.Worker, error) {
metricsSpoolDir := a.CurrentConfig().MetricsSpoolDir()
err := checkSpoolDir(metricsSpoolDir)
if err != nil {
return nil, errors.Annotatef(err, "error checking spool directory %q", metricsSpoolDir)
}
w := &spoolWorker{factory: newFactory(metricsSpoolDir)}
go func() {
defer w.tomb.Done()
<-w.tomb.Dying()
}()
return w, nil
}
示例14: start
func (mc ManifoldConfig) start(a agent.Agent, apiCaller base.APICaller) (worker.Worker, error) {
agentTag := a.CurrentConfig().Tag()
retryStrategyFacade := mc.NewFacade(apiCaller)
initialRetryStrategy, err := retryStrategyFacade.RetryStrategy(agentTag)
if err != nil {
return nil, errors.Trace(err)
}
return mc.NewWorker(WorkerConfig{
Facade: retryStrategyFacade,
AgentTag: agentTag,
RetryStrategy: initialRetryStrategy,
})
}
示例15: isModelManager
// isModelManager returns whether the agent has JobManageModel,
// or an error.
func isModelManager(a agent.Agent, apiCaller base.APICaller) (bool, error) {
agentFacade := apiagent.NewState(apiCaller)
entity, err := agentFacade.Entity(a.CurrentConfig().Tag())
if err != nil {
return false, errors.Trace(err)
}
for _, job := range entity.Jobs() {
if job == multiwatcher.JobManageModel {
return true, nil
}
}
return false, nil
}