Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the help descriptions for commands #845

Merged
merged 41 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
82c91c3
Update the help descriptions for commands
samtholiya Dec 11, 2024
29e309e
Update the help descriptions for commands
samtholiya Dec 11, 2024
6e364d4
Merge branch 'main' into DEV-2823
samtholiya Dec 12, 2024
c4ce5f1
Merge branch 'DEV-2823' of https://github.com/cloudposse/atmos into D…
samtholiya Dec 12, 2024
0cb5f1a
Update help content
samtholiya Dec 13, 2024
887f1b6
Merge branch 'main' into DEV-2823
osterman Dec 16, 2024
a0ca467
Update cmd/list_components.go
osterman Dec 16, 2024
0b8b232
Update cmd/list.go
osterman Dec 16, 2024
1d6041d
Update cmd/atlantis_generate.go
osterman Dec 16, 2024
ac3e0b4
Update cmd/atlantis_generate.go
osterman Dec 16, 2024
da1a8da
Update cmd/atlantis_generate_repo_config.go
osterman Dec 16, 2024
4f22922
Update cmd/atlantis.go
osterman Dec 16, 2024
96674d0
Update cmd/describe.go
osterman Dec 16, 2024
f827a85
Update cmd/describe_affected.go
osterman Dec 16, 2024
4f32320
Update cmd/aws.go
osterman Dec 16, 2024
6f32228
Update cmd/aws_eks.go
osterman Dec 16, 2024
8ae7656
Update cmd/describe_component.go
osterman Dec 16, 2024
fe4d74c
Merge branch 'main' into DEV-2823
osterman Jan 3, 2025
9ecd2ea
Merge branch 'main' into DEV-2823
samtholiya Jan 7, 2025
bbc1fec
Fix eds long description
samtholiya Jan 7, 2025
c221521
Update cmd/terraform_generate_varfile.go
samtholiya Jan 7, 2025
8ce9d36
Update cmd/validate.go
samtholiya Jan 7, 2025
eacd883
Update cmd/terraform_generate_backend.go
samtholiya Jan 7, 2025
676b38f
Update cmd/terraform_generate_backend.go
samtholiya Jan 7, 2025
13d74a6
Update cmd/vendor.go
samtholiya Jan 7, 2025
d9ed11d
Update cmd/terraform.go
samtholiya Jan 7, 2025
bd45131
Update cmd/pro.go
samtholiya Jan 7, 2025
9e2183e
Update cmd/describe_workflows.go
samtholiya Jan 7, 2025
2285dbe
Update cmd/describe_workflows.go
samtholiya Jan 7, 2025
10691a5
Update cmd/helmfile.go
samtholiya Jan 7, 2025
f1d157b
Update cmd/helmfile_generate_varfile.go
samtholiya Jan 7, 2025
492ad8e
Update cmd/helmfile_generate_varfile.go
samtholiya Jan 7, 2025
fc4d901
Update cmd/list.go
samtholiya Jan 7, 2025
9202b73
Update cmd/version.go
samtholiya Jan 7, 2025
d0fcd2c
Update cmd/version.go
samtholiya Jan 7, 2025
d62bbe8
Update cmd/workflow.go
samtholiya Jan 7, 2025
e76b2f3
Update cmd/workflow.go
samtholiya Jan 7, 2025
6639f65
Update internal/tui/templates/templater.go
samtholiya Jan 7, 2025
7872186
Update cmd/atlantis.go
samtholiya Jan 7, 2025
0302094
Merge branch 'main' into DEV-2823
samtholiya Jan 8, 2025
6967b3d
updates
aknysh Jan 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/atlantis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// atlantisCmd executes Atlantis commands
var atlantisCmd = &cobra.Command{
Use: "atlantis",
Short: "Execute 'atlantis' commands",
Long: `This command executes Atlantis integration commands`,
Short: "Generate and manage Atlantis configurations",
Long: `This command enables integration with Atlantis, allowing users to generate configurations for Terraform workflows.`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/atlantis_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// atlantisGenerateCmd generates various Atlantis configurations
var atlantisGenerateCmd = &cobra.Command{
Use: "generate",
Short: "Execute 'atlantis generate' commands",
Long: "This command generates various Atlantis configurations",
Short: "Generate Atlantis configuration files",
Long: "This command generates configuration files to automate and streamline Terraform workflows with Atlantis.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/atlantis_generate_repo_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// atlantisGenerateRepoConfigCmd generates repository configuration for Atlantis
var atlantisGenerateRepoConfigCmd = &cobra.Command{
Use: "repo-config",
Short: "Execute 'atlantis generate repo-config`",
Long: "This command generates repository configuration for Atlantis",
Short: "Generate repository configuration for Atlantis",
Long: "Generate the repository configuration file required for Atlantis to manage Terraform repositories.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// awsCmd executes 'aws' CLI commands
var awsCmd = &cobra.Command{
Use: "aws",
Short: "Execute 'aws' commands",
Long: `This command executes 'aws' CLI commands`,
Short: "Run AWS-specific commands for interacting with cloud resources",
Long: `This command allows interaction with AWS resources through various CLI commands.`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
11 changes: 8 additions & 3 deletions cmd/aws_eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@

// awsCmd executes 'aws eks' CLI commands
var awsEksCmd = &cobra.Command{
Use: "eks",
Short: "Execute 'aws eks' commands",
Long: `This command executes 'aws eks' CLI commands`,
Use: "eks",
Short: "Run AWS EKS CLI commands for cluster management",
Long: `Manage Amazon EKS clusters using AWS CLI, including configuring kubeconfig and performing cluster-related operations.`

Check failure on line 11 in cmd/aws_eks.go

View workflow job for this annotation

GitHub Actions / Build

syntax error: unexpected newline in composite literal; possibly missing comma or }

You can use this command to interact with AWS EKS, including operations like configuring kubeconfig, managing clusters, and more.

For a list of available AWS EKS commands, refer to the Atmos documentation:
https://atmos.tools/cli/commands/aws/eks-update-kubeconfig`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},

Check failure on line 17 in cmd/aws_eks.go

View workflow job for this annotation

GitHub Actions / Build

syntax error: unexpected { after top level declaration
}

func init() {
Expand Down
3 changes: 1 addition & 2 deletions cmd/aws_eks_update_kubeconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ import (
// awsEksCmdUpdateKubeconfigCmd executes 'aws eks update-kubeconfig' command
var awsEksCmdUpdateKubeconfigCmd = &cobra.Command{
Use: "update-kubeconfig",
Short: "Execute 'aws eks update-kubeconfig' command",

Short: "Update 'kubeconfig' for an EKS cluster using AWS CLI",
Long: `This command executes 'aws eks update-kubeconfig' to download 'kubeconfig' from an EKS cluster and saves it to a file. The command executes 'aws eks update-kubeconfig' in three different ways:

1. If all the required parameters (cluster name and AWS profile/role) are provided on the command-line,
Expand Down
2 changes: 1 addition & 1 deletion cmd/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

var completionCmd = &cobra.Command{
Use: "completion [bash|zsh|fish|powershell]",
Short: "Generate completion script for Bash, Zsh, Fish and PowerShell",
Short: "Generate autocompletion scripts for Bash, Zsh, Fish, and PowerShell",
Long: "This command generates completion scripts for Bash, Zsh, Fish and PowerShell",
DisableFlagsInUseLine: true,
ValidArgs: []string{"bash", "zsh", "fish", "powershell"},
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// describeCmd describes configuration for stacks and components
var describeCmd = &cobra.Command{
Use: "describe",
Short: "Execute 'describe' commands",
Long: `This command shows configuration for CLI, stacks and components`,
Short: "Show details about Atmos configurations and components",
Long: `Display configuration details for Atmos CLI, stacks, and components.`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_affected.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// describeAffectedCmd produces a list of the affected Atmos components and stacks given two Git commits
var describeAffectedCmd = &cobra.Command{
Use: "affected",
Short: "Execute 'describe affected' command",
Long: `This command produces a list of the affected Atmos components and stacks given two Git commits: atmos describe affected [options]`,
Short: "List Atmos components and stacks affected by two Git commits",
Long: "Identify and list Atmos components and stacks impacted by changes between two Git commits.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_component.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// describeComponentCmd describes configuration for components
var describeComponentCmd = &cobra.Command{
Use: "component",
Short: "Execute 'describe component' command",
Long: `This command shows configuration for an Atmos component in an Atmos stack: atmos describe component <component> -s <stack>`,
Short: "Show configuration details for an Atmos component in a stack",
Long: `Display the configuration details for a specific Atmos component within a designated Atmos stack, including its dependencies, settings, and overrides.`,
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// describeComponentCmd describes configuration for components
var describeConfigCmd = &cobra.Command{
Use: "config",
Short: "Execute 'describe config' command",
Long: `This command shows the final (deep-merged) CLI configuration: atmos describe config`,
Short: "Display the final merged CLI configuration",
Long: "This command displays the final, deep-merged CLI configuration after combining all relevant configuration files.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
err := e.ExecuteDescribeConfigCmd(cmd, args)
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_dependents.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
var describeDependentsCmd = &cobra.Command{
Use: "dependents",
Aliases: []string{"dependants"},
Short: "Execute 'describe dependents' command",
Long: `This command produces a list of Atmos components in Atmos stacks that depend on the provided Atmos component: atmos describe dependents [options]`,
Short: "List Atmos components that depend on a given component",
Long: "This command generates a list of Atmos components within stacks that depend on the specified Atmos component.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// describeStacksCmd describes configuration for stacks and components in the stacks
var describeStacksCmd = &cobra.Command{
Use: "stacks",
Short: "Execute 'describe stacks' command",
Long: `This command shows configuration for atmos stacks and components in the stacks: atmos describe stacks [options]`,
Short: "Display configuration for Atmos stacks and their components",
Long: "This command shows the configuration details for Atmos stacks and the components within those stacks.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/describe_workflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// describeWorkflowsCmd executes 'atmos describe workflows' CLI commands
var describeWorkflowsCmd = &cobra.Command{
Use: "workflows",
Short: "Execute 'describe workflows' commands",
Long: `This command executes 'atmos describe workflows' CLI command`,
Short: "Display information about Atmos workflows",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
Long: "This command provides details about the Atmos workflows, helping you review and understand the workflows configured in the system.",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
Example: "describe workflows\n" +
"describe workflows --format json\n" +
"describe workflows -f yaml\n" +
Expand Down
2 changes: 1 addition & 1 deletion cmd/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const atmosDocsURL = "https://atmos.tools"
// docsCmd opens the Atmos docs and can display component documentation
var docsCmd = &cobra.Command{
Use: "docs",
Short: "Open the Atmos docs or display component documentation",
Short: "Open Atmos documentation or display component-specific docs",
Long: `This command opens the Atmos docs or displays the documentation for a specified Atmos component.`,
Example: "atmos docs vpc",
Args: cobra.MaximumNArgs(1),
Expand Down
2 changes: 1 addition & 1 deletion cmd/helmfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
var helmfileCmd = &cobra.Command{
Use: "helmfile",
Aliases: []string{"hf"},
Short: "Execute 'helmfile' commands",
Short: "Manage Helmfile-based Kubernetes deployments",
Long: `This command runs Helmfile commands`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: true},
Run: func(cmd *cobra.Command, args []string) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/helmfile_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// helmfileGenerateCmd generates configurations for helmfile components
var helmfileGenerateCmd = &cobra.Command{
Use: "generate",
Short: "Execute 'helmfile generate' commands",
Long: "This command generates configurations for helmfile components",
Short: "Generate configurations for Helmfile components",
Long: "This command generates various configuration files for Helmfile components in Atmos.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/helmfile_generate_varfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// helmfileGenerateVarfileCmd generates varfile for a helmfile component
var helmfileGenerateVarfileCmd = &cobra.Command{
Use: "varfile",
Short: "Execute 'helmfile generate varfile' command",
Long: `This command generates a varfile for an atmos helmfile component: atmos helmfile generate varfile <component> -s <stack> -f <file>`,
Short: "Generate a varfile for an Atmos Helmfile component",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
Long: "This command generates a varfile for a specified Atmos Helmfile component.",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
6 changes: 3 additions & 3 deletions cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

// listCmd commands list stacks and components
var listCmd = &cobra.Command{
Use: "list",
Short: "Execute 'list' commands",
Long: `This command lists stacks and components`,
Use: "list",
Short: "List available stacks and components",
Long: `Retrieve and display a list of all available stacks and components in your environment.`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
4 changes: 2 additions & 2 deletions cmd/list_components.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
// listComponentsCmd lists atmos components
var listComponentsCmd = &cobra.Command{
Use: "components",
Short: "Execute 'list components' command",
Long: `This command lists all Atmos components or filters components by stacks.`,
Short: "List all Atmos components or filter by stack",
Long: "List Atmos components, with options to filter results by specific stacks.",
Example: "atmos list components\n" +
"atmos list components -s <stack>",
Run: func(cmd *cobra.Command, args []string) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/list_stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
// listStacksCmd lists atmos stacks
var listStacksCmd = &cobra.Command{
Use: "stacks",
Short: "Execute 'list stacks' command",
Long: `This command lists all Atmos stacks or all stacks for the specified component: atmos list stacks -c <component>`,
Short: "List all Atmos stacks or stacks for a specific component",
Long: "This command lists all Atmos stacks, or filters the list to show only the stacks associated with a specified component.",
Example: "atmos list stacks\n" +
"atmos list stacks -c <component>",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Expand Down
2 changes: 1 addition & 1 deletion cmd/pro.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
// proCmd executes 'atmos pro' CLI commands
var proCmd = &cobra.Command{
Use: "pro",
Short: "Execute 'pro' commands",
Short: "Access premium features integrated with app.cloudposse.com",
Long: `This command executes 'atmos pro' CLI commands`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}
Expand Down
2 changes: 1 addition & 1 deletion cmd/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
var terraformCmd = &cobra.Command{
Use: "terraform",
Aliases: []string{"tf"},
Short: "Execute Terraform commands",
Short: "Execute Terraform commands (e.g., plan, apply, destroy) using Atmos stack configurations",
osterman marked this conversation as resolved.
Show resolved Hide resolved
aknysh marked this conversation as resolved.
Show resolved Hide resolved
Long: `This command executes Terraform commands`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: true},
Run: func(cmd *cobra.Command, args []string) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/terraform_generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
// terraformGenerateCmd generates configurations for terraform components
var terraformGenerateCmd = &cobra.Command{
Use: "generate",
Short: "Execute 'terraform generate' commands",
Long: "This command generates configurations for terraform components",
Short: "Generate configurations for Terraform components",
Long: "This command generates various configuration files for Terraform components in Atmos.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/terraform_generate_backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
// terraformGenerateBackendCmd generates backend config for a terraform component
var terraformGenerateBackendCmd = &cobra.Command{
Use: "backend",
Short: "Execute 'terraform generate backend' command",
Short: "Generate backend configuration for a Terraform component",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
Long: `This command generates the backend config for a terraform component: atmos terraform generate backend <component> -s <stack>`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/terraform_generate_backends.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// terraformGenerateBackendsCmd generates backend configs for all terraform components
var terraformGenerateBackendsCmd = &cobra.Command{
Use: "backends",
Short: "Execute 'terraform generate backends' command",
Long: `This command generates backend configs for all terraform components`,
Short: "Generate backend configurations for all Terraform components",
Long: "This command generates the backend configuration files for all Terraform components in the Atmos environment.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/terraform_generate_varfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// terraformGenerateVarfileCmd generates varfile for a terraform component
var terraformGenerateVarfileCmd = &cobra.Command{
Use: "varfile",
Short: "Execute 'terraform generate varfile' command",
Long: `This command generates a varfile for an atmos terraform component: atmos terraform generate varfile <component> -s <stack> -f <file>`,
Short: "Generate a varfile for a Terraform component",
Long: "This command generates a varfile for a specified Atmos Terraform component.",
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
4 changes: 2 additions & 2 deletions cmd/terraform_generate_varfiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
// terraformGenerateVarfilesCmd generates varfiles for all terraform components in all stacks
var terraformGenerateVarfilesCmd = &cobra.Command{
Use: "varfiles",
Short: "Execute 'terraform generate varfiles' command",
Long: `This command generates varfiles for all atmos terraform components in all stacks`,
Short: "Generate varfiles for all Terraform components in all stacks",
Long: "This command generates varfiles for all Atmos Terraform components across all stacks.",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
// Check Atmos configuration
Expand Down
2 changes: 1 addition & 1 deletion cmd/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
// validateCmd commands validate stacks and components
var validateCmd = &cobra.Command{
Use: "validate",
Short: "Execute 'validate' commands",
Short: "Validate configurations against OPA policies and JSON schemas",
Long: `This command validates stacks and components`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}
Expand Down
4 changes: 2 additions & 2 deletions cmd/validate_component.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
// validateComponentCmd validates atmos components
var validateComponentCmd = &cobra.Command{
Use: "component",
Short: "Execute 'validate component' command",
Long: `This command validates an atmos component in a stack using Json Schema or OPA policies: atmos validate component <component> -s <stack> --schema-path <schema_path> --schema-type <jsonschema|opa>`,
Short: "Validate an Atmos component in a stack using JSON Schema or OPA policies",
Long: "This command validates an Atmos component within a stack using either JSON Schema or OPA policies.",
Example: "atmos validate component <component> -s <stack>\n" +
"atmos validate component <component> -s <stack> --schema-path <schema_path> --schema-type <jsonschema|opa>\n" +
"atmos validate component <component> -s <stack> --schema-path <schema_path> --schema-type opa --module-paths catalog",
Expand Down
4 changes: 2 additions & 2 deletions cmd/validate_stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
// ValidateStacksCmd validates stacks
var ValidateStacksCmd = &cobra.Command{
Use: "stacks",
Short: "Execute 'validate stacks' command",
Long: `This command validates stack manifest configurations: atmos validate stacks`,
Short: "Validate stack manifest configurations",
Long: "This command validates the configuration of stack manifests in Atmos to ensure proper setup and compliance.",
Example: "validate stacks",
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
Run: func(cmd *cobra.Command, args []string) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/vendor.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
// vendorCmd executes 'atmos vendor' CLI commands
var vendorCmd = &cobra.Command{
Use: "vendor",
Short: "Execute 'vendor' commands",
Short: "Manage external dependencies for components or stacks",
Long: `This command executes 'atmos vendor' CLI commands`,
samtholiya marked this conversation as resolved.
Show resolved Hide resolved
FParseErrWhitelist: struct{ UnknownFlags bool }{UnknownFlags: false},
}
Expand Down
Loading
Loading