func (c *RunCommand) SetFlags(f *gnuflag.FlagSet) { f.BoolVar(&c.noContext, "no-context", false, "do not run the command in a unit context") f.StringVar(&c.relationId, "r", "", "run the commands for a specific relation context on a unit") f.StringVar(&c.relationId, "relation", "", "") f.StringVar(&c.remoteUnitName, "remote-unit", "", "run the commands for a specific remote unit in a relation context on a unit") f.BoolVar(&c.forceRemoteUnit, "force-remote-unit", false, "run the commands for a specific relation context, bypassing the remote unit check") }
func (c *toolsMetadataCommand) SetFlags(f *gnuflag.FlagSet) { f.StringVar(&c.metadataDir, "d", "", "local directory in which to store metadata") // If no stream is specified, we'll generate metadata for the legacy tools location. f.StringVar(&c.stream, "stream", "", "simplestreams stream for which to generate the metadata") f.BoolVar(&c.clean, "clean", false, "remove any existing metadata for the specified stream before generating new metadata") f.BoolVar(&c.public, "public", false, "tools are for a public cloud, so generate mirrors information") }
func (c *statusHistoryCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.StringVar(&c.outputContent, "type", "unit", "Type of statuses to be displayed [agent|workload|combined|machine|machineInstance|container|containerinstance]") f.IntVar(&c.backlogSize, "n", 0, "Returns the last N logs (cannot be combined with --days or --date)") f.IntVar(&c.backlogSizeDays, "days", 0, "Returns the logs for the past <days> days (cannot be combined with -n or --date)") f.StringVar(&c.backlogDate, "date", "", "Returns logs for any date after the passed one, the expected date format is YYYY-MM-DD (cannot be combined with -n or --days)") f.BoolVar(&c.isoTime, "utc", false, "Display time as UTC in RFC3339 format") }
// SetFlags handles known option flags. func (c *restoreCommand) SetFlags(f *gnuflag.FlagSet) { c.CommandBase.SetFlags(f) f.StringVar(&c.constraintsStr, "constraints", "", "set model constraints") f.BoolVar(&c.bootstrap, "b", false, "Bootstrap a new state machine") f.StringVar(&c.filename, "file", "", "Provide a file to be used as the backup.") f.StringVar(&c.backupId, "id", "", "Provide the name of the backup to be restored") f.BoolVar(&c.buildAgent, "build-agent", false, "Build binary agent if bootstraping a new machine") }
// SetFlags implements Command.SetFlags. func (c *showControllerCommand) SetFlags(f *gnuflag.FlagSet) { c.JujuCommandBase.SetFlags(f) f.BoolVar(&c.showPasswords, "show-password", false, "Show password for logged in user") c.out.AddFlags(f, "yaml", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, }) }
// SetFlags adds the flags for this command to the passed gnuflag.FlagSet. func (u *UpgradeMongoCommand) SetFlags(f *gnuflag.FlagSet) { f.StringVar(&u.machineTag, "machinetag", "machine-0", "unique tag identifier for machine to be upgraded") f.StringVar(&u.series, "series", "", "series for the machine") f.StringVar(&u.configFilePath, "configfile", "", "path to the config file") f.StringVar(&u.members, "members", "", "a comma separated list of replicaset member ips") f.BoolVar(&u.rollback, "rollback", false, "rollback a previous attempt at upgrading that was cut in the process") f.BoolVar(&u.slave, "slave", false, "this is a slave machine in a replicaset") }
func (c *listCredentialsCommand) SetFlags(f *gnuflag.FlagSet) { c.CommandBase.SetFlags(f) f.BoolVar(&c.showSecrets, "show-secrets", false, "Show secrets") c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": formatCredentialsTabular, }) }
// SetFlags is defined on the cmd.Command interface. func (c *listCommand) SetFlags(f *gnuflag.FlagSet) { c.SpaceCommandBase.SetFlags(f) c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": c.printTabular, }) f.BoolVar(&c.Short, "short", false, "only display spaces.") }
func (c *upgradeJujuCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.StringVar(&c.vers, "agent-version", "", "Upgrade to specific version") f.BoolVar(&c.BuildAgent, "build-agent", false, "Build a local version of the agent binary; for development use only") f.BoolVar(&c.DryRun, "dry-run", false, "Don't change anything, just report what would be changed") f.BoolVar(&c.ResetPrevious, "reset-previous-upgrade", false, "Clear the previous (incomplete) upgrade status (use with care)") f.BoolVar(&c.AssumeYes, "y", false, "Answer 'yes' to confirmation prompts") f.BoolVar(&c.AssumeYes, "yes", false, "") }
// Set up the output. func (c *listCommand) SetFlags(f *gnuflag.FlagSet) { c.ActionCommandBase.SetFlags(f) c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": c.printTabular, }) f.BoolVar(&c.fullSchema, "schema", false, "Display the full action schema") }
// SetFlags implements Command.SetFlags. func (c *listCommand) SetFlags(f *gnuflag.FlagSet) { c.infoCommandBase.SetFlags(f) f.BoolVar(&c.All, "all", false, "Include disabled users") c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": c.formatTabular, }) }
// SetFlags implements Command.SetFlags. func (c *listCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.BoolVar(&c.all, "all", false, "Lists for all models (administrative users only)") c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": c.formatter, }) }
// SetFlags implements part of the cmd.Command interface. func (c *configCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "json": cmd.FormatJson, "tabular": formatConfigTabular, "yaml": cmd.FormatYaml, }) f.BoolVar(&c.reset, "reset", false, "Reset the provided keys to be empty") }
func (c *upgradeCharmCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.BoolVar(&c.ForceUnits, "force-units", false, "Upgrade all units immediately, even if in error state") f.StringVar((*string)(&c.Channel), "channel", "", "Channel to use when getting the charm or bundle from the charm store") f.BoolVar(&c.ForceSeries, "force-series", false, "Upgrade even if series of deployed applications are not supported by the new charm") f.StringVar(&c.SwitchURL, "switch", "", "Crossgrade to a different charm") f.StringVar(&c.CharmPath, "path", "", "Upgrade to a charm located at path") f.IntVar(&c.Revision, "revision", -1, "Explicit revision of current charm") f.Var(stringMap{&c.Resources}, "resource", "Resource to be uploaded to the controller") }
// SetFlags is defined on the cmd.Command interface. func (c *createCommand) SetFlags(f *gnuflag.FlagSet) { c.SubnetCommandBase.SetFlags(f) f.BoolVar(&c.IsPublic, "public", false, "enable public access with shadow addresses") f.BoolVar(&c.IsPrivate, "private", true, "disable public access with shadow addresses") // Because SetFlags is called before Parse, we cannot // use f.Visit() here to check both flags were not // specified at once. So we store the flag set and // defer the check to Init(). c.flagSet = f }
// SetFlags implements cmd.Command.SetFlags. func (c *ShowServiceCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) const defaultFormat = "tabular" c.out.AddFlags(f, defaultFormat, map[string]cmd.Formatter{ defaultFormat: FormatSvcTabular, "yaml": cmd.FormatYaml, "json": cmd.FormatJson, }) f.BoolVar(&c.details, "details", false, "show detailed information about resources used by each unit.") }
func (c *statusCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.BoolVar(&c.isoTime, "utc", false, "Display time as UTC in RFC3339 format") f.BoolVar(&c.color, "color", false, "Force use of ANSI color codes") defaultFormat := "tabular" c.out.AddFlags(f, defaultFormat, map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "short": FormatOneline, "oneline": FormatOneline, "line": FormatOneline, "tabular": c.FormatTabular, "summary": FormatSummary, }) }
func (c *syncToolsCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.BoolVar(&c.allVersions, "all", false, "Copy all versions, not just the latest") f.StringVar(&c.versionStr, "version", "", "Copy a specific major[.minor] version") f.BoolVar(&c.dryRun, "dry-run", false, "Don't copy, just print what would be copied") f.BoolVar(&c.dev, "dev", false, "Consider development versions as well as released ones\n DEPRECATED: use --stream instead") f.BoolVar(&c.public, "public", false, "Tools are for a public cloud, so generate mirrors information") f.StringVar(&c.source, "source", "", "Local source directory") f.StringVar(&c.stream, "stream", "", "Simplestreams stream for which to sync metadata") f.StringVar(&c.localDir, "local-dir", "", "Local destination directory") f.StringVar(&c.destination, "destination", "", "Local destination directory\n DEPRECATED: use --local-dir instead") }
func (c *DeployCommand) SetFlags(f *gnuflag.FlagSet) { // Keep above charmOnlyFlags and bundleOnlyFlags lists updated when adding // new flags. c.UnitCommandBase.SetFlags(f) c.ModelCommandBase.SetFlags(f) f.IntVar(&c.NumUnits, "n", 1, "Number of application units to deploy for principal charms") f.StringVar((*string)(&c.Channel), "channel", "", "Channel to use when getting the charm or bundle from the charm store") f.Var(&c.Config, "config", "Path to yaml-formatted application config") f.StringVar(&c.ConstraintsStr, "constraints", "", "Set application constraints") f.StringVar(&c.Series, "series", "", "The series on which to deploy") f.BoolVar(&c.Force, "force", false, "Allow a charm to be deployed to a machine running an unsupported series") f.Var(storageFlag{&c.Storage, &c.BundleStorage}, "storage", "Charm storage constraints") f.Var(stringMap{&c.Resources}, "resource", "Resource to be uploaded to the controller") f.StringVar(&c.BindToSpaces, "bind", "", "Configure application endpoint bindings to spaces") for _, step := range c.Steps { step.SetFlags(f) } c.flagSet = f }
func (c *bootstrapCommand) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.StringVar(&c.ConstraintsStr, "constraints", "", "Set model constraints") f.StringVar(&c.BootstrapConstraintsStr, "bootstrap-constraints", "", "Specify bootstrap machine constraints") f.StringVar(&c.BootstrapSeries, "bootstrap-series", "", "Specify the series of the bootstrap machine") if featureflag.Enabled(feature.ImageMetadata) { f.StringVar(&c.BootstrapImage, "bootstrap-image", "", "Specify the image of the bootstrap machine") } f.BoolVar(&c.BuildAgent, "build-agent", false, "Build local version of agent binary before bootstrapping") f.StringVar(&c.MetadataSource, "metadata-source", "", "Local path to use as tools and/or metadata source") f.StringVar(&c.Placement, "to", "", "Placement directive indicating an instance to bootstrap") f.BoolVar(&c.KeepBrokenEnvironment, "keep-broken", false, "Do not destroy the model if bootstrap fails") f.BoolVar(&c.AutoUpgrade, "auto-upgrade", false, "Upgrade to the latest patch release tools on first bootstrap") f.StringVar(&c.AgentVersionParam, "agent-version", "", "Version of tools to use for Juju agents") f.StringVar(&c.CredentialName, "credential", "", "Credentials to use when bootstrapping") f.Var(&c.config, "config", "Specify a controller configuration file, or one or more configuration\n options\n (--config config.yaml [--config key=value ...])") f.StringVar(&c.hostedModelName, "d", defaultHostedModelName, "Name of the default hosted model for the controller") f.StringVar(&c.hostedModelName, "default-model", defaultHostedModelName, "Name of the default hosted model for the controller") f.BoolVar(&c.noGUI, "no-gui", false, "Do not install the Juju GUI in the controller when bootstrapping") f.BoolVar(&c.showClouds, "clouds", false, "Print the available clouds which can be used to bootstrap a Juju environment") f.StringVar(&c.showRegionsForCloud, "regions", "", "Print the available regions for the specified cloud") }
// SetFlags implements Command.SetFlags. func (c *modelsCommand) SetFlags(f *gnuflag.FlagSet) { c.ControllerCommandBase.SetFlags(f) f.StringVar(&c.user, "user", "", "The user to list models for (administrative users only)") f.BoolVar(&c.all, "all", false, "Lists all models, regardless of user accessibility (administrative users only)") f.BoolVar(&c.listUUID, "uuid", false, "Display UUID for models") f.BoolVar(&c.exactTime, "exact-time", false, "Use full timestamps") c.out.AddFlags(f, "tabular", map[string]cmd.Formatter{ "yaml": cmd.FormatYaml, "json": cmd.FormatJson, "tabular": c.formatTabular, }) }
func (c *StatusGetCommand) SetFlags(f *gnuflag.FlagSet) { c.out.AddFlags(f, "smart", cmd.DefaultFormatters) f.BoolVar(&c.includeData, "include-data", false, "print all status data") f.BoolVar(&c.serviceWide, "application", false, "print status for all units of this application if this unit is the leader") }
func (c *SSHCommon) SetFlags(f *gnuflag.FlagSet) { c.ModelCommandBase.SetFlags(f) f.BoolVar(&c.proxy, "proxy", false, "Proxy through the API server") f.BoolVar(&c.pty, "pty", true, "Enable pseudo-tty allocation") f.BoolVar(&c.noHostKeyChecks, "no-host-key-checks", false, "Skip host key checking (INSECURE)") }
func (c *JujuLogCommand) SetFlags(f *gnuflag.FlagSet) { f.BoolVar(&c.Debug, "debug", false, "log at debug level") f.StringVar(&c.Level, "l", "INFO", "Send log message at the given level") f.StringVar(&c.Level, "log-level", "INFO", "") f.StringVar(&c.formatFlag, "format", "", "deprecated format flag") }
func (c *upgradeMongoCommand) SetFlags(f *gnuflag.FlagSet) { f.BoolVar(&c.local, "local", false, "this is a local provider") c.Log.AddFlags(f) }
func (c *RpcCommand) SetFlags(f *gnuflag.FlagSet) { f.StringVar(&c.Value, "value", "", "doc") f.BoolVar(&c.Slow, "slow", false, "doc") f.BoolVar(&c.Echo, "echo", false, "doc") }
func (c *StatusSetCommand) SetFlags(f *gnuflag.FlagSet) { f.BoolVar(&c.service, "application", false, "set this status for the application to which the unit belongs if the unit is the leader") f.BoolVar(&c.service, "service", false, "set this status for the application to which the unit belongs if the unit is the leader") }
func (c *ConfigGetCommand) SetFlags(f *gnuflag.FlagSet) { c.out.AddFlags(f, "smart", cmd.DefaultFormatters) f.BoolVar(&c.All, "a", false, "print all keys") f.BoolVar(&c.All, "all", false, "") }
// SetFlags implements Command.SetFlags. func (c *unregisterCommand) SetFlags(f *gnuflag.FlagSet) { f.BoolVar(&c.assumeYes, "y", false, "Do not prompt for confirmation") f.BoolVar(&c.assumeYes, "yes", false, "") }
// SetFlags implements Command.SetFlags. func (c *createCommand) SetFlags(f *gnuflag.FlagSet) { c.CommandBase.SetFlags(f) f.BoolVar(&c.NoDownload, "no-download", false, "Do not download the archive") f.StringVar(&c.Filename, "filename", notset, "Download to this file") }