Skip to content

Commit 658b6d9

Browse files
committed
Merge main into osterman/list-ui-overhaul - resolve conflicts
2 parents 82ed911 + 8f1fe66 commit 658b6d9

File tree

304 files changed

+39630
-20821
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

304 files changed

+39630
-20821
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ performance-optimization/
107107
.scratch/
108108
TEST_FAILURE_ANALYSIS.md
109109
scratch/
110+
*.ansi

cmd/cmd_utils.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -676,8 +676,7 @@ func showFlagUsageAndExit(cmd *cobra.Command, err error) error {
676676
}
677677
}
678678
showUsageExample(cmd, unknownCommand)
679-
errUtils.Exit(1)
680-
return nil
679+
return errUtils.WithExitCode(err, 1)
681680
}
682681

683682
// getConfigAndStacksInfo processes the CLI config and stacks.

cmd/helmfile_sync.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import "github.com/spf13/cobra"
44

55
// Command: atmos helmfile sync
66
var (
7-
helmfileSyncShort = "Synchronize the state of Helm releases with the desired state without making changes."
7+
helmfileSyncShort = "Synchronize the state of Helm releases by reconciling the actual state with the desired state (applies changes as needed)."
88
helmfileSyncLong = `This command ensures that the actual state of Helm releases in the cluster matches the desired
9-
state defined in your configurations without performing destructive actions.
9+
state defined in your configurations by applying any necessary changes.
1010
1111
Example usage:
1212
atmos helmfile sync echo-server --stack tenant1-ue2-dev

0 commit comments

Comments
 (0)