1
0
mirror of synced 2026-02-15 14:06:56 +00:00

Add ks alias to kustomization commands

This commit is contained in:
stefanprodan
2020-04-29 09:53:29 +03:00
parent cfa72ddb0b
commit 6d66f42382
2 changed files with 6 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ import (
var createKsCmd = &cobra.Command{ var createKsCmd = &cobra.Command{
Use: "kustomization [name]", Use: "kustomization [name]",
Aliases: []string{"ks"},
Short: "Create or update a kustomization resource", Short: "Create or update a kustomization resource",
Long: ` Long: `
The kustomization source command generates a kustomization.kustomize.fluxcd.io resource for a given GitRepository source. The kustomization source command generates a kustomization.kustomize.fluxcd.io resource for a given GitRepository source.

View File

@@ -13,6 +13,7 @@ import (
var syncKsCmd = &cobra.Command{ var syncKsCmd = &cobra.Command{
Use: "kustomization [name]", Use: "kustomization [name]",
Aliases: []string{"ks"},
Short: "Synchronize kustomization", Short: "Synchronize kustomization",
Long: ` Long: `
The sync kustomization command triggers a reconciliation of a Kustomization resource and waits for it to finish.`, The sync kustomization command triggers a reconciliation of a Kustomization resource and waits for it to finish.`,