You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/commands/workerscmd/controller-led_funcs.go

41 lines
1.3 KiB

package workerscmd
import (
"github.com/hashicorp/boundary/api"
"github.com/hashicorp/boundary/api/workers"
"github.com/hashicorp/boundary/internal/cmd/base"
)
func init() {
executeExtraControllerLedActions = executeExtraControllerLedActionsImpl
}
func (c *ControllerLedCommand) extraControllerLedHelpFunc(helpMap map[string]func() string) string {
var helpStr string
switch c.Func {
case "create":
helpStr = base.WrapForHelpText([]string{
"Usage: boundary workers create controller-led [options] [args]",
"",
" Create a worker using the controller-led approach, receiving an activation token for a worker. Example:",
"",
` $ boundary workers create controller-led -name us-east-1-1`,
"",
"",
})
}
return helpStr + c.Flags().Help()
}
func executeExtraControllerLedActionsImpl(c *ControllerLedCommand, origResp *api.Response, origItem *workers.Worker, origError error, workerClient *workers.Client, version uint32, opts []workers.Option) (*api.Response, *workers.Worker, error) {
switch c.Func {
case "create":
result, err := workerClient.CreateControllerLed(c.Context, c.FlagScopeId, opts...)
if err != nil {
return nil, nil, err
}
return result.GetResponse(), result.GetItem(), nil
}
return origResp, origItem, origError
}