diff --git a/clustertool/cmd/checkcrypt.go b/clustertool/cmd/checkcrypt.go index 2ed34dd69527e..2ad325a35db38 100644 --- a/clustertool/cmd/checkcrypt.go +++ b/clustertool/cmd/checkcrypt.go @@ -19,6 +19,7 @@ This tool can, for example, be used as a pre-commit check and will fail with a n var checkcrypt = &cobra.Command{ Use: "checkcrypt", Short: "Checks if all files are encrypted correctly in accordance with .sops.yaml", + Aliases: []string{"checkencrypt"}, Example: "clustertool checkcrypt", Long: checkcyptLongHelp, Run: func(cmd *cobra.Command, args []string) { diff --git a/clustertool/cmd/helmrelease_upgrade.go b/clustertool/cmd/helmrelease_upgrade.go index c5248852e5766..614575324298b 100644 --- a/clustertool/cmd/helmrelease_upgrade.go +++ b/clustertool/cmd/helmrelease_upgrade.go @@ -16,6 +16,7 @@ var hrUpgradeLongHelp = strings.TrimSpace(` var hrupgrade = &cobra.Command{ Use: "upgrade", Short: "run helm-upgrade using a helm-release file without flux", + Aliases: []string{"update", "edit"}, Example: "clustertool helmrelease upgrade", Long: hrUpgradeLongHelp, Run: func(cmd *cobra.Command, args []string) { diff --git a/clustertool/cmd/talos_apply.go b/clustertool/cmd/talos_apply.go index c511c47c36886..1b8742582b173 100644 --- a/clustertool/cmd/talos_apply.go +++ b/clustertool/cmd/talos_apply.go @@ -47,6 +47,7 @@ Not any contained helm-charts var apply = &cobra.Command{ Use: "apply", Short: "apply", + Aliases: []string{"apply-config"}, Example: "clustertool apply ", Long: applyLongHelp, Run: func(cmd *cobra.Command, args []string) {