Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CompletionCmd = &cobra.Command{ Use: "completion [bash|zsh|fish|powershell]", Short: "Generate completion script", Long: "To load completions", DisableFlagsInUseLine: true, ValidArgs: []string{"bash", "zsh", "fish", "powershell"}, Args: cobra.ExactValidArgs(1), Run: func(cmd *cobra.Command, args []string) { switch args[0] { case "bash": cmd.Root().GenBashCompletion(os.Stdout) case "zsh": cmd.Root().GenZshCompletion(os.Stdout) case "fish": cmd.Root().GenFishCompletion(os.Stdout, true) case "powershell": cmd.Root().GenPowerShellCompletionWithDesc(os.Stdout) } }, }
View Source
var RootCmd = &cobra.Command{
Use: "atmos",
Short: "Universal Tool for DevOps and Cloud Automation",
Long: `'atmos'' is a universal tool for DevOps and cloud automation used for provisioning, managing and orchestrating workflows across various toolchains`,
}
RootCmd represents the base command when called without any subcommands
View Source
var Version = "0.0.1"
Functions ¶
Types ¶
This section is empty.
Source Files
¶
- atlantis.go
- atlantis_generate.go
- atlantis_generate_repo_config.go
- aws.go
- aws_eks.go
- aws_eks_update_kubeconfig.go
- cmd_utils.go
- completion.go
- describe.go
- describe_component.go
- describe_config.go
- describe_stacks.go
- helmfile.go
- helmfile_generate.go
- helmfile_generate_varfile.go
- root.go
- terraform.go
- terraform_generate.go
- terraform_generate_backend.go
- terraform_generate_backends.go
- terraform_generate_varfile.go
- terraform_generate_varfiles.go
- validate.go
- validate_component.go
- validate_stacks.go
- vendor.go
- vendor_diff.go
- vendor_pull.go
- version.go
- workflow.go
Click to show internal directories.
Click to hide internal directories.