diff --git a/cmd/tk/main.go b/cmd/tk/main.go index b3cf6f82..1ac64299 100644 --- a/cmd/tk/main.go +++ b/cmd/tk/main.go @@ -38,7 +38,7 @@ var rootCmd = &cobra.Command{ SilenceErrors: true, Short: "Command line utility for assembling Kubernetes CD pipelines", Long: `Command line utility for assembling Kubernetes CD pipelines the GitOps way.`, - Example: ` # Check prerequisites + Example: ` # Check prerequisites tk check --pre # Install the latest version of the toolkit @@ -53,8 +53,8 @@ var rootCmd = &cobra.Command{ # List GitRepository sources and their status tk get sources git - # Trigger a GitRepository source sync - tk sync source git webapp-latest + # Trigger a GitRepository source reconciliation + tk reconcile source git gitops-system # Export GitRepository sources in YAML format tk export source git --all > sources.yaml diff --git a/docs/cmd/tk.md b/docs/cmd/tk.md index b4dee787..ec88eccb 100644 --- a/docs/cmd/tk.md +++ b/docs/cmd/tk.md @@ -9,7 +9,7 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way. ### Examples ``` - # Check prerequisites + # Check prerequisites tk check --pre # Install the latest version of the toolkit @@ -24,8 +24,8 @@ Command line utility for assembling Kubernetes CD pipelines the GitOps way. # List GitRepository sources and their status tk get sources git - # Trigger a GitRepository source sync - tk sync source git webapp-latest + # Trigger a GitRepository source reconciliation + tk reconcile source git gitops-system # Export GitRepository sources in YAML format tk export source git --all > sources.yaml