diff --git a/cmd/argocd/commands/root.go b/cmd/argocd/commands/root.go index 10e6bed36377e..000a3a81a2fd7 100644 --- a/cmd/argocd/commands/root.go +++ b/cmd/argocd/commands/root.go @@ -80,6 +80,7 @@ func NewCommand() *cobra.Command { command.PersistentFlags().StringVar(&clientOpts.PortForwardNamespace, "port-forward-namespace", config.GetFlag("port-forward-namespace", ""), "Namespace name which should be used for port forwarding") command.PersistentFlags().IntVar(&clientOpts.HttpRetryMax, "http-retry-max", config.GetIntFlag("http-retry-max", 0), "Maximum number of retries to establish http connection to Argo CD server") command.PersistentFlags().BoolVar(&clientOpts.Core, "core", config.GetBoolFlag("core"), "If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server") + command.PersistentFlags().StringVar(&clientOpts.Context, "argocd-context", "", "The name of the Argo-CD server context to use") command.PersistentFlags().StringVar(&clientOpts.ServerName, "server-name", env.StringFromEnv(common.EnvServerName, common.DefaultServerName), fmt.Sprintf("Name of the Argo CD API server; set this or the %s environment variable when the server's name label differs from the default, for example when installing via the Helm chart", common.EnvServerName)) command.PersistentFlags().StringVar(&clientOpts.AppControllerName, "controller-name", env.StringFromEnv(common.EnvAppControllerName, common.DefaultApplicationControllerName), fmt.Sprintf("Name of the Argo CD Application controller; set this or the %s environment variable when the controller's name label differs from the default, for example when installing via the Helm chart", common.EnvAppControllerName)) command.PersistentFlags().StringVar(&clientOpts.RedisHaProxyName, "redis-haproxy-name", env.StringFromEnv(common.EnvRedisHaProxyName, common.DefaultRedisHaProxyName), fmt.Sprintf("Name of the Redis HA Proxy; set this or the %s environment variable when the HA Proxy's name label differs from the default, for example when installing via the Helm chart", common.EnvRedisHaProxyName)) diff --git a/docs/user-guide/commands/argocd.md b/docs/user-guide/commands/argocd.md index dc5cd36297760..fe50de4a6daf0 100644 --- a/docs/user-guide/commands/argocd.md +++ b/docs/user-guide/commands/argocd.md @@ -11,6 +11,7 @@ argocd [flags] ### Options ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account.md b/docs/user-guide/commands/argocd_account.md index 88d483ffac68e..20cd868461914 100644 --- a/docs/user-guide/commands/argocd_account.md +++ b/docs/user-guide/commands/argocd_account.md @@ -52,6 +52,7 @@ argocd account [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_bcrypt.md b/docs/user-guide/commands/argocd_account_bcrypt.md index 6bc282cfaab1e..c38614424c081 100644 --- a/docs/user-guide/commands/argocd_account_bcrypt.md +++ b/docs/user-guide/commands/argocd_account_bcrypt.md @@ -25,6 +25,7 @@ argocd account bcrypt --password YOUR_PASSWORD ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_can-i.md b/docs/user-guide/commands/argocd_account_can-i.md index 6e6cb2bea524b..149d2ef6e53d4 100644 --- a/docs/user-guide/commands/argocd_account_can-i.md +++ b/docs/user-guide/commands/argocd_account_can-i.md @@ -35,6 +35,7 @@ Resources: [clusters projects applications applicationsets repositories certific ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_delete-token.md b/docs/user-guide/commands/argocd_account_delete-token.md index 6ef4cf11499fe..739481569c892 100644 --- a/docs/user-guide/commands/argocd_account_delete-token.md +++ b/docs/user-guide/commands/argocd_account_delete-token.md @@ -28,6 +28,7 @@ argocd account delete-token --account ID ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_generate-token.md b/docs/user-guide/commands/argocd_account_generate-token.md index 0d21d36ad32ff..1ee8a551b3036 100644 --- a/docs/user-guide/commands/argocd_account_generate-token.md +++ b/docs/user-guide/commands/argocd_account_generate-token.md @@ -30,6 +30,7 @@ argocd account generate-token --account ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_get-user-info.md b/docs/user-guide/commands/argocd_account_get-user-info.md index 66603a52b2628..7f223f06c7aa2 100644 --- a/docs/user-guide/commands/argocd_account_get-user-info.md +++ b/docs/user-guide/commands/argocd_account_get-user-info.md @@ -28,6 +28,7 @@ argocd account get-user-info [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_get.md b/docs/user-guide/commands/argocd_account_get.md index fbe0ef6027141..af44a3493313d 100644 --- a/docs/user-guide/commands/argocd_account_get.md +++ b/docs/user-guide/commands/argocd_account_get.md @@ -29,6 +29,7 @@ argocd account get --account ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_list.md b/docs/user-guide/commands/argocd_account_list.md index 0082c0260496c..14a024b244e51 100644 --- a/docs/user-guide/commands/argocd_account_list.md +++ b/docs/user-guide/commands/argocd_account_list.md @@ -24,6 +24,7 @@ argocd account list ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_account_update-password.md b/docs/user-guide/commands/argocd_account_update-password.md index ed84a7da00617..e770207a9f6d1 100644 --- a/docs/user-guide/commands/argocd_account_update-password.md +++ b/docs/user-guide/commands/argocd_account_update-password.md @@ -40,6 +40,7 @@ argocd account update-password [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin.md b/docs/user-guide/commands/argocd_admin.md index 0aa338f1570e2..d1a3581a40ce6 100644 --- a/docs/user-guide/commands/argocd_admin.md +++ b/docs/user-guide/commands/argocd_admin.md @@ -30,6 +30,7 @@ $ argocd admin initial-password reset ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_app.md b/docs/user-guide/commands/argocd_admin_app.md index 58e0f50f25846..2906cc7bb5607 100644 --- a/docs/user-guide/commands/argocd_admin_app.md +++ b/docs/user-guide/commands/argocd_admin_app.md @@ -32,6 +32,7 @@ argocd admin app get-reconcile-results APPNAME ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_app_diff-reconcile-results.md b/docs/user-guide/commands/argocd_admin_app_diff-reconcile-results.md index 39190e23349fc..ee707903187ac 100644 --- a/docs/user-guide/commands/argocd_admin_app_diff-reconcile-results.md +++ b/docs/user-guide/commands/argocd_admin_app_diff-reconcile-results.md @@ -17,6 +17,7 @@ argocd admin app diff-reconcile-results PATH1 PATH2 [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_app_generate-spec.md b/docs/user-guide/commands/argocd_admin_app_generate-spec.md index fd43bd7a44512..e17d9ce97aa5d 100644 --- a/docs/user-guide/commands/argocd_admin_app_generate-spec.md +++ b/docs/user-guide/commands/argocd_admin_app_generate-spec.md @@ -106,6 +106,7 @@ argocd admin app generate-spec APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_app_get-reconcile-results.md b/docs/user-guide/commands/argocd_admin_app_get-reconcile-results.md index 4e696bd994903..4748b75b57b05 100644 --- a/docs/user-guide/commands/argocd_admin_app_get-reconcile-results.md +++ b/docs/user-guide/commands/argocd_admin_app_get-reconcile-results.md @@ -43,6 +43,7 @@ argocd admin app get-reconcile-results PATH [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster.md b/docs/user-guide/commands/argocd_admin_cluster.md index 544c0de08959c..380b9577cfc2c 100644 --- a/docs/user-guide/commands/argocd_admin_cluster.md +++ b/docs/user-guide/commands/argocd_admin_cluster.md @@ -31,6 +31,7 @@ argocd admin cluster namespaces my-cluster ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_generate-spec.md b/docs/user-guide/commands/argocd_admin_cluster_generate-spec.md index 79f88233fab32..0a1fb959cb585 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_generate-spec.md +++ b/docs/user-guide/commands/argocd_admin_cluster_generate-spec.md @@ -40,6 +40,7 @@ argocd admin cluster generate-spec CONTEXT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_kubeconfig.md b/docs/user-guide/commands/argocd_admin_cluster_kubeconfig.md index 38f61ce5cd8a2..2eec1d91b8d66 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_kubeconfig.md +++ b/docs/user-guide/commands/argocd_admin_cluster_kubeconfig.md @@ -54,6 +54,7 @@ argocd admin cluster kubeconfig https://cluster-api-url:6443 /path/to/output/kub ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_namespaces.md b/docs/user-guide/commands/argocd_admin_cluster_namespaces.md index fee5c7679e159..f7f339964e500 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_namespaces.md +++ b/docs/user-guide/commands/argocd_admin_cluster_namespaces.md @@ -37,6 +37,7 @@ argocd admin cluster namespaces [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_namespaces_disable-namespaced-mode.md b/docs/user-guide/commands/argocd_admin_cluster_namespaces_disable-namespaced-mode.md index fcbebd7612337..e2d89d36e02e3 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_namespaces_disable-namespaced-mode.md +++ b/docs/user-guide/commands/argocd_admin_cluster_namespaces_disable-namespaced-mode.md @@ -38,6 +38,7 @@ argocd admin cluster namespaces disable-namespaced-mode PATTERN [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_namespaces_enable-namespaced-mode.md b/docs/user-guide/commands/argocd_admin_cluster_namespaces_enable-namespaced-mode.md index 762a652d7ab12..9f8dd9047c8a9 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_namespaces_enable-namespaced-mode.md +++ b/docs/user-guide/commands/argocd_admin_cluster_namespaces_enable-namespaced-mode.md @@ -40,6 +40,7 @@ argocd admin cluster namespaces enable-namespaced-mode PATTERN [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_shards.md b/docs/user-guide/commands/argocd_admin_cluster_shards.md index 44efa4392b9ac..59c8d4b17a27f 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_shards.md +++ b/docs/user-guide/commands/argocd_admin_cluster_shards.md @@ -53,6 +53,7 @@ argocd admin cluster shards [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_cluster_stats.md b/docs/user-guide/commands/argocd_admin_cluster_stats.md index 18aa583f01305..9238049782b62 100644 --- a/docs/user-guide/commands/argocd_admin_cluster_stats.md +++ b/docs/user-guide/commands/argocd_admin_cluster_stats.md @@ -67,6 +67,7 @@ argocd admin cluster stats target-cluster ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_dashboard.md b/docs/user-guide/commands/argocd_admin_dashboard.md index 71e11a173906a..f19fcb8785ee8 100644 --- a/docs/user-guide/commands/argocd_admin_dashboard.md +++ b/docs/user-guide/commands/argocd_admin_dashboard.md @@ -54,6 +54,7 @@ $ argocd admin dashboard --redis-compress gzip ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_export.md b/docs/user-guide/commands/argocd_admin_export.md index 633ced6ce23f4..2da5df239cc10 100644 --- a/docs/user-guide/commands/argocd_admin_export.md +++ b/docs/user-guide/commands/argocd_admin_export.md @@ -40,6 +40,7 @@ argocd admin export [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_import.md b/docs/user-guide/commands/argocd_admin_import.md index 3428b45492394..ccaec9420fcb3 100644 --- a/docs/user-guide/commands/argocd_admin_import.md +++ b/docs/user-guide/commands/argocd_admin_import.md @@ -43,6 +43,7 @@ argocd admin import SOURCE [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_initial-password.md b/docs/user-guide/commands/argocd_admin_initial-password.md index dbc44561debdc..3df3bdc666559 100644 --- a/docs/user-guide/commands/argocd_admin_initial-password.md +++ b/docs/user-guide/commands/argocd_admin_initial-password.md @@ -37,6 +37,7 @@ argocd admin initial-password [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_notifications.md b/docs/user-guide/commands/argocd_admin_notifications.md index 87429217f99e9..9159d1af3c0cb 100644 --- a/docs/user-guide/commands/argocd_admin_notifications.md +++ b/docs/user-guide/commands/argocd_admin_notifications.md @@ -42,6 +42,7 @@ argocd admin notifications [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_notifications_template.md b/docs/user-guide/commands/argocd_admin_notifications_template.md index 75d5700aaac04..9ac47ec7c0889 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_template.md +++ b/docs/user-guide/commands/argocd_admin_notifications_template.md @@ -17,6 +17,7 @@ argocd admin notifications template [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_notifications_template_get.md b/docs/user-guide/commands/argocd_admin_notifications_template_get.md index 214a8e5cd442b..e82bca7716114 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_template_get.md +++ b/docs/user-guide/commands/argocd_admin_notifications_template_get.md @@ -29,6 +29,7 @@ argocd admin notifications template get app-sync-succeeded -o=yaml ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_notifications_template_notify.md b/docs/user-guide/commands/argocd_admin_notifications_template_notify.md index 4f94a9d960476..64ab824453321 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_template_notify.md +++ b/docs/user-guide/commands/argocd_admin_notifications_template_notify.md @@ -30,6 +30,7 @@ argocd admin notifications template notify app-sync-succeeded guestbook ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_notifications_trigger.md b/docs/user-guide/commands/argocd_admin_notifications_trigger.md index d6ff9e53ab235..faa9fb3674fc5 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_trigger.md +++ b/docs/user-guide/commands/argocd_admin_notifications_trigger.md @@ -17,6 +17,7 @@ argocd admin notifications trigger [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_notifications_trigger_get.md b/docs/user-guide/commands/argocd_admin_notifications_trigger_get.md index acd2ab5af9553..d439ada6634eb 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_trigger_get.md +++ b/docs/user-guide/commands/argocd_admin_notifications_trigger_get.md @@ -29,6 +29,7 @@ argocd admin notifications trigger get on-sync-failed -o=yaml ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_notifications_trigger_run.md b/docs/user-guide/commands/argocd_admin_notifications_trigger_run.md index f8bebb2937937..68a39f102da17 100644 --- a/docs/user-guide/commands/argocd_admin_notifications_trigger_run.md +++ b/docs/user-guide/commands/argocd_admin_notifications_trigger_run.md @@ -29,6 +29,7 @@ argocd admin notifications trigger run on-sync-status-unknown ./sample-app.yaml ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --argocd-repo-server string Argo CD repo server address (default "argocd-repo-server:8081") --argocd-repo-server-plaintext Use a plaintext client (non-TLS) to connect to repository server --argocd-repo-server-strict-tls Perform strict validation of TLS certificates when connecting to repo server diff --git a/docs/user-guide/commands/argocd_admin_proj.md b/docs/user-guide/commands/argocd_admin_proj.md index b22a2513b7e4d..61753e9dd8bf9 100644 --- a/docs/user-guide/commands/argocd_admin_proj.md +++ b/docs/user-guide/commands/argocd_admin_proj.md @@ -17,6 +17,7 @@ argocd admin proj [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_proj_generate-allow-list.md b/docs/user-guide/commands/argocd_admin_proj_generate-allow-list.md index 83dc00a6096b4..b6c025e9beb3f 100644 --- a/docs/user-guide/commands/argocd_admin_proj_generate-allow-list.md +++ b/docs/user-guide/commands/argocd_admin_proj_generate-allow-list.md @@ -45,6 +45,7 @@ argocd admin proj generate-allow-list /path/to/clusterrole.yaml my-project ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_proj_generate-spec.md b/docs/user-guide/commands/argocd_admin_proj_generate-spec.md index b4f544367813d..7c2f22a8eba30 100644 --- a/docs/user-guide/commands/argocd_admin_proj_generate-spec.md +++ b/docs/user-guide/commands/argocd_admin_proj_generate-spec.md @@ -44,6 +44,7 @@ argocd admin proj generate-spec PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_proj_update-role-policy.md b/docs/user-guide/commands/argocd_admin_proj_update-role-policy.md index c1c4823077e01..7617fc95c9f72 100644 --- a/docs/user-guide/commands/argocd_admin_proj_update-role-policy.md +++ b/docs/user-guide/commands/argocd_admin_proj_update-role-policy.md @@ -53,6 +53,7 @@ argocd admin proj update-role-policy PROJECT_GLOB MODIFICATION ACTION [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_redis-initial-password.md b/docs/user-guide/commands/argocd_admin_redis-initial-password.md index 85e56195758dd..a35a7d55e54f8 100644 --- a/docs/user-guide/commands/argocd_admin_redis-initial-password.md +++ b/docs/user-guide/commands/argocd_admin_redis-initial-password.md @@ -37,6 +37,7 @@ argocd admin redis-initial-password [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_repo.md b/docs/user-guide/commands/argocd_admin_repo.md index 411cf558bac5b..4a900f727b185 100644 --- a/docs/user-guide/commands/argocd_admin_repo.md +++ b/docs/user-guide/commands/argocd_admin_repo.md @@ -17,6 +17,7 @@ argocd admin repo [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_repo_generate-spec.md b/docs/user-guide/commands/argocd_admin_repo_generate-spec.md index 10c722913258b..5dfdf50881dcd 100644 --- a/docs/user-guide/commands/argocd_admin_repo_generate-spec.md +++ b/docs/user-guide/commands/argocd_admin_repo_generate-spec.md @@ -64,6 +64,7 @@ argocd admin repo generate-spec REPOURL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_settings.md b/docs/user-guide/commands/argocd_admin_settings.md index 3c631cf8f123b..902f4a1d80016 100644 --- a/docs/user-guide/commands/argocd_admin_settings.md +++ b/docs/user-guide/commands/argocd_admin_settings.md @@ -40,6 +40,7 @@ argocd admin settings [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_admin_settings_rbac.md b/docs/user-guide/commands/argocd_admin_settings_rbac.md index 043c39979a98a..776fabdc6d7b6 100644 --- a/docs/user-guide/commands/argocd_admin_settings_rbac.md +++ b/docs/user-guide/commands/argocd_admin_settings_rbac.md @@ -18,6 +18,7 @@ argocd admin settings rbac [flags] ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_rbac_can.md b/docs/user-guide/commands/argocd_admin_settings_rbac_can.md index f14092785facf..a428740e20869 100644 --- a/docs/user-guide/commands/argocd_admin_settings_rbac_can.md +++ b/docs/user-guide/commands/argocd_admin_settings_rbac_can.md @@ -73,6 +73,7 @@ argocd admin settings rbac can someuser create application 'default/app' --defau ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --auth-token string Authentication token --client-crt string Client certificate file diff --git a/docs/user-guide/commands/argocd_admin_settings_rbac_validate.md b/docs/user-guide/commands/argocd_admin_settings_rbac_validate.md index 4be305e40a33c..b0647bce80324 100644 --- a/docs/user-guide/commands/argocd_admin_settings_rbac_validate.md +++ b/docs/user-guide/commands/argocd_admin_settings_rbac_validate.md @@ -65,6 +65,7 @@ argocd admin settings rbac validate --namespace argocd ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --auth-token string Authentication token --client-crt string Client certificate file diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md index eeec6bcf5f63a..4a031ec3c6414 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides.md @@ -18,6 +18,7 @@ argocd admin settings resource-overrides [flags] ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_health.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_health.md index 1e5cc49335cc5..f7478fa9a21ea 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_health.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_health.md @@ -29,6 +29,7 @@ argocd admin settings resource-overrides health ./deploy.yaml --argocd-cm-path . ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-differences.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-differences.md index 752b3a64c59c7..78aefbb8ff522 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-differences.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-differences.md @@ -29,6 +29,7 @@ argocd admin settings resource-overrides ignore-differences ./deploy.yaml --argo ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md index 0eeefab2713ea..b2154319b46ca 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_ignore-resource-updates.md @@ -30,6 +30,7 @@ argocd admin settings resource-overrides ignore-resource-updates ./deploy.yaml - ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_list-actions.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_list-actions.md index 57f60f3d726f5..442c0febc6710 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_list-actions.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_list-actions.md @@ -29,6 +29,7 @@ argocd admin settings resource-overrides action list /tmp/deploy.yaml --argocd-c ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_run-action.md b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_run-action.md index f7ce62d4559fe..e1a58c6da99e1 100644 --- a/docs/user-guide/commands/argocd_admin_settings_resource-overrides_run-action.md +++ b/docs/user-guide/commands/argocd_admin_settings_resource-overrides_run-action.md @@ -29,6 +29,7 @@ argocd admin settings resource-overrides action run /tmp/deploy.yaml restart --a ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_admin_settings_validate.md b/docs/user-guide/commands/argocd_admin_settings_validate.md index 8e40a403441b5..d94bd701e02d0 100644 --- a/docs/user-guide/commands/argocd_admin_settings_validate.md +++ b/docs/user-guide/commands/argocd_admin_settings_validate.md @@ -34,6 +34,7 @@ argocd admin settings validate --group accounts --group plugins --load-cluster-s ``` --argocd-cm-path string Path to local argocd-cm.yaml file + --argocd-context string The name of the Argo-CD server context to use --argocd-secret-path string Path to local argocd-secret.yaml file --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. diff --git a/docs/user-guide/commands/argocd_app.md b/docs/user-guide/commands/argocd_app.md index a3840231aff7a..1a366b04383ab 100644 --- a/docs/user-guide/commands/argocd_app.md +++ b/docs/user-guide/commands/argocd_app.md @@ -49,6 +49,7 @@ argocd app [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_actions.md b/docs/user-guide/commands/argocd_app_actions.md index af336f1767b23..662f15333bf44 100644 --- a/docs/user-guide/commands/argocd_app_actions.md +++ b/docs/user-guide/commands/argocd_app_actions.md @@ -27,6 +27,7 @@ argocd app actions [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_actions_list.md b/docs/user-guide/commands/argocd_app_actions_list.md index 2d1f78524df50..3e896eba202dd 100644 --- a/docs/user-guide/commands/argocd_app_actions_list.md +++ b/docs/user-guide/commands/argocd_app_actions_list.md @@ -29,6 +29,7 @@ argocd app actions list APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_actions_run.md b/docs/user-guide/commands/argocd_app_actions_run.md index db8e29fc197b9..8d6d60301b8b5 100644 --- a/docs/user-guide/commands/argocd_app_actions_run.md +++ b/docs/user-guide/commands/argocd_app_actions_run.md @@ -29,6 +29,7 @@ argocd app actions run APPNAME ACTION [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_add-source.md b/docs/user-guide/commands/argocd_app_add-source.md index 3067f99110b9d..a91a04c9a4bb7 100644 --- a/docs/user-guide/commands/argocd_app_add-source.md +++ b/docs/user-guide/commands/argocd_app_add-source.md @@ -83,6 +83,7 @@ argocd app add-source APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_create.md b/docs/user-guide/commands/argocd_app_create.md index 92fa3b6d2ef14..a524b840cb0ba 100644 --- a/docs/user-guide/commands/argocd_app_create.md +++ b/docs/user-guide/commands/argocd_app_create.md @@ -107,6 +107,7 @@ argocd app create APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_delete-resource.md b/docs/user-guide/commands/argocd_app_delete-resource.md index e397c0c019fa8..6907d5fb36a23 100644 --- a/docs/user-guide/commands/argocd_app_delete-resource.md +++ b/docs/user-guide/commands/argocd_app_delete-resource.md @@ -25,6 +25,7 @@ argocd app delete-resource APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_delete.md b/docs/user-guide/commands/argocd_app_delete.md index 827eeaab4ce7a..80dec827fc7ed 100644 --- a/docs/user-guide/commands/argocd_app_delete.md +++ b/docs/user-guide/commands/argocd_app_delete.md @@ -40,6 +40,7 @@ argocd app delete APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_diff.md b/docs/user-guide/commands/argocd_app_diff.md index f8c5a15589340..9896d9b3ceadc 100644 --- a/docs/user-guide/commands/argocd_app_diff.md +++ b/docs/user-guide/commands/argocd_app_diff.md @@ -36,6 +36,7 @@ argocd app diff APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_edit.md b/docs/user-guide/commands/argocd_app_edit.md index e581677b79c12..90fe001639056 100644 --- a/docs/user-guide/commands/argocd_app_edit.md +++ b/docs/user-guide/commands/argocd_app_edit.md @@ -18,6 +18,7 @@ argocd app edit APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_get.md b/docs/user-guide/commands/argocd_app_get.md index d0bf744054c38..74b5e80473292 100644 --- a/docs/user-guide/commands/argocd_app_get.md +++ b/docs/user-guide/commands/argocd_app_get.md @@ -54,6 +54,7 @@ argocd app get APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_history.md b/docs/user-guide/commands/argocd_app_history.md index eefadef01f417..c0b68c6dad62b 100644 --- a/docs/user-guide/commands/argocd_app_history.md +++ b/docs/user-guide/commands/argocd_app_history.md @@ -19,6 +19,7 @@ argocd app history APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_list.md b/docs/user-guide/commands/argocd_app_list.md index 17e00fcac9df3..9c5ce915460a8 100644 --- a/docs/user-guide/commands/argocd_app_list.md +++ b/docs/user-guide/commands/argocd_app_list.md @@ -37,6 +37,7 @@ argocd app list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_logs.md b/docs/user-guide/commands/argocd_app_logs.md index 8dc1f6a9f1aae..7e8e2f8edb455 100644 --- a/docs/user-guide/commands/argocd_app_logs.md +++ b/docs/user-guide/commands/argocd_app_logs.md @@ -68,6 +68,7 @@ argocd app logs APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_manifests.md b/docs/user-guide/commands/argocd_app_manifests.md index 86d1aea1b1831..0857668782004 100644 --- a/docs/user-guide/commands/argocd_app_manifests.md +++ b/docs/user-guide/commands/argocd_app_manifests.md @@ -36,6 +36,7 @@ argocd app manifests APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_patch-resource.md b/docs/user-guide/commands/argocd_app_patch-resource.md index c849395cb3ea8..e1abda78807a0 100644 --- a/docs/user-guide/commands/argocd_app_patch-resource.md +++ b/docs/user-guide/commands/argocd_app_patch-resource.md @@ -25,6 +25,7 @@ argocd app patch-resource APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_patch.md b/docs/user-guide/commands/argocd_app_patch.md index 0c453ea159e64..c681ea887b417 100644 --- a/docs/user-guide/commands/argocd_app_patch.md +++ b/docs/user-guide/commands/argocd_app_patch.md @@ -30,6 +30,7 @@ argocd app patch APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_remove-source.md b/docs/user-guide/commands/argocd_app_remove-source.md index 9f96989e5d482..6482c8a600087 100644 --- a/docs/user-guide/commands/argocd_app_remove-source.md +++ b/docs/user-guide/commands/argocd_app_remove-source.md @@ -26,6 +26,7 @@ argocd app remove-source APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_resources.md b/docs/user-guide/commands/argocd_app_resources.md index 22027f74ba3d7..e789ed642a043 100644 --- a/docs/user-guide/commands/argocd_app_resources.md +++ b/docs/user-guide/commands/argocd_app_resources.md @@ -20,6 +20,7 @@ argocd app resources APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_rollback.md b/docs/user-guide/commands/argocd_app_rollback.md index 923023e35a2e8..04a9106892353 100644 --- a/docs/user-guide/commands/argocd_app_rollback.md +++ b/docs/user-guide/commands/argocd_app_rollback.md @@ -21,6 +21,7 @@ argocd app rollback APPNAME [ID] [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_set.md b/docs/user-guide/commands/argocd_app_set.md index 1cd245288cb51..43de3ee205d34 100644 --- a/docs/user-guide/commands/argocd_app_set.md +++ b/docs/user-guide/commands/argocd_app_set.md @@ -93,6 +93,7 @@ argocd app set APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_sync.md b/docs/user-guide/commands/argocd_app_sync.md index 1dc6f48bd16ba..5cbf3fb06c367 100644 --- a/docs/user-guide/commands/argocd_app_sync.md +++ b/docs/user-guide/commands/argocd_app_sync.md @@ -75,6 +75,7 @@ argocd app sync [APPNAME... | -l selector | --project project-name] [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_terminate-op.md b/docs/user-guide/commands/argocd_app_terminate-op.md index a6d04299ca313..112dba5189957 100644 --- a/docs/user-guide/commands/argocd_app_terminate-op.md +++ b/docs/user-guide/commands/argocd_app_terminate-op.md @@ -17,6 +17,7 @@ argocd app terminate-op APPNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_unset.md b/docs/user-guide/commands/argocd_app_unset.md index 10795166c4477..f0de506336ed9 100644 --- a/docs/user-guide/commands/argocd_app_unset.md +++ b/docs/user-guide/commands/argocd_app_unset.md @@ -48,6 +48,7 @@ argocd app unset APPNAME parameters [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_app_wait.md b/docs/user-guide/commands/argocd_app_wait.md index e2d3886f4d3ab..e0be1f5e62a53 100644 --- a/docs/user-guide/commands/argocd_app_wait.md +++ b/docs/user-guide/commands/argocd_app_wait.md @@ -55,6 +55,7 @@ argocd app wait [APPNAME.. | -l selector] [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_appset.md b/docs/user-guide/commands/argocd_appset.md index 7b543ae318831..09e33a2bcd9f4 100644 --- a/docs/user-guide/commands/argocd_appset.md +++ b/docs/user-guide/commands/argocd_appset.md @@ -52,6 +52,7 @@ argocd appset [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_appset_create.md b/docs/user-guide/commands/argocd_appset_create.md index 70c9d6b61c84f..718074a950f97 100644 --- a/docs/user-guide/commands/argocd_appset_create.md +++ b/docs/user-guide/commands/argocd_appset_create.md @@ -30,6 +30,7 @@ argocd appset create [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_appset_delete.md b/docs/user-guide/commands/argocd_appset_delete.md index d97ca51b604e8..3e9b09c2262ac 100644 --- a/docs/user-guide/commands/argocd_appset_delete.md +++ b/docs/user-guide/commands/argocd_appset_delete.md @@ -25,6 +25,7 @@ argocd appset delete [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_appset_get.md b/docs/user-guide/commands/argocd_appset_get.md index 8024d8ebf0a06..b73139efb4659 100644 --- a/docs/user-guide/commands/argocd_appset_get.md +++ b/docs/user-guide/commands/argocd_appset_get.md @@ -26,6 +26,7 @@ argocd appset get APPSETNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_appset_list.md b/docs/user-guide/commands/argocd_appset_list.md index 92e0b21cb749b..52135d7975d58 100644 --- a/docs/user-guide/commands/argocd_appset_list.md +++ b/docs/user-guide/commands/argocd_appset_list.md @@ -28,6 +28,7 @@ argocd appset list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cert.md b/docs/user-guide/commands/argocd_cert.md index b126328a4372f..3a5b101f2c85e 100644 --- a/docs/user-guide/commands/argocd_cert.md +++ b/docs/user-guide/commands/argocd_cert.md @@ -59,6 +59,7 @@ argocd cert [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cert_add-ssh.md b/docs/user-guide/commands/argocd_cert_add-ssh.md index 94daf24bf376e..1e1eaa7bf3703 100644 --- a/docs/user-guide/commands/argocd_cert_add-ssh.md +++ b/docs/user-guide/commands/argocd_cert_add-ssh.md @@ -20,6 +20,7 @@ argocd cert add-ssh --batch [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cert_add-tls.md b/docs/user-guide/commands/argocd_cert_add-tls.md index e8d3d733697e7..2ac40be8f5620 100644 --- a/docs/user-guide/commands/argocd_cert_add-tls.md +++ b/docs/user-guide/commands/argocd_cert_add-tls.md @@ -19,6 +19,7 @@ argocd cert add-tls SERVERNAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cert_list.md b/docs/user-guide/commands/argocd_cert_list.md index 43a4af5bea783..63d4f0500a4ec 100644 --- a/docs/user-guide/commands/argocd_cert_list.md +++ b/docs/user-guide/commands/argocd_cert_list.md @@ -21,6 +21,7 @@ argocd cert list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cert_rm.md b/docs/user-guide/commands/argocd_cert_rm.md index 602a84aa6b85c..9636256422f09 100644 --- a/docs/user-guide/commands/argocd_cert_rm.md +++ b/docs/user-guide/commands/argocd_cert_rm.md @@ -19,6 +19,7 @@ argocd cert rm REPOSERVER [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster.md b/docs/user-guide/commands/argocd_cluster.md index a30c357d54d71..edb8e4399495a 100644 --- a/docs/user-guide/commands/argocd_cluster.md +++ b/docs/user-guide/commands/argocd_cluster.md @@ -56,6 +56,7 @@ argocd cluster [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_add.md b/docs/user-guide/commands/argocd_cluster_add.md index 8a80a12f5a4d5..842eb8cf213a2 100644 --- a/docs/user-guide/commands/argocd_cluster_add.md +++ b/docs/user-guide/commands/argocd_cluster_add.md @@ -39,6 +39,7 @@ argocd cluster add CONTEXT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_get.md b/docs/user-guide/commands/argocd_cluster_get.md index a020a94557e99..4a4001b4dd8af 100644 --- a/docs/user-guide/commands/argocd_cluster_get.md +++ b/docs/user-guide/commands/argocd_cluster_get.md @@ -25,6 +25,7 @@ argocd cluster get in-cluster ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_list.md b/docs/user-guide/commands/argocd_cluster_list.md index 3e03f1581648f..f4be1312eda0f 100644 --- a/docs/user-guide/commands/argocd_cluster_list.md +++ b/docs/user-guide/commands/argocd_cluster_list.md @@ -40,6 +40,7 @@ argocd cluster list -o server ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_rm.md b/docs/user-guide/commands/argocd_cluster_rm.md index 80057bb5a7082..b74c185480823 100644 --- a/docs/user-guide/commands/argocd_cluster_rm.md +++ b/docs/user-guide/commands/argocd_cluster_rm.md @@ -25,6 +25,7 @@ argocd cluster rm cluster-name ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_rotate-auth.md b/docs/user-guide/commands/argocd_cluster_rotate-auth.md index 8dc3a5bf745d3..98b19643e856f 100644 --- a/docs/user-guide/commands/argocd_cluster_rotate-auth.md +++ b/docs/user-guide/commands/argocd_cluster_rotate-auth.md @@ -24,6 +24,7 @@ argocd cluster rotate-auth cluster-name ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_cluster_set.md b/docs/user-guide/commands/argocd_cluster_set.md index 3f25dda8dac2d..eece336c95af9 100644 --- a/docs/user-guide/commands/argocd_cluster_set.md +++ b/docs/user-guide/commands/argocd_cluster_set.md @@ -29,6 +29,7 @@ argocd cluster set NAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_completion.md b/docs/user-guide/commands/argocd_completion.md index 09d2bf264f1e8..304b46b35ad51 100644 --- a/docs/user-guide/commands/argocd_completion.md +++ b/docs/user-guide/commands/argocd_completion.md @@ -52,6 +52,7 @@ $ source ~/.config/fish/completions/argocd.fish ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_context.md b/docs/user-guide/commands/argocd_context.md index f02944cf4f775..75e3b8f921338 100644 --- a/docs/user-guide/commands/argocd_context.md +++ b/docs/user-guide/commands/argocd_context.md @@ -31,6 +31,7 @@ argocd context cd.argoproj.io --delete ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_gpg.md b/docs/user-guide/commands/argocd_gpg.md index bca15e98b7c87..12c2438700d97 100644 --- a/docs/user-guide/commands/argocd_gpg.md +++ b/docs/user-guide/commands/argocd_gpg.md @@ -36,6 +36,7 @@ argocd gpg [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_gpg_add.md b/docs/user-guide/commands/argocd_gpg_add.md index 3ef5d4e6c72d5..e8760a98d5c80 100644 --- a/docs/user-guide/commands/argocd_gpg_add.md +++ b/docs/user-guide/commands/argocd_gpg_add.md @@ -25,6 +25,7 @@ argocd gpg add [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_gpg_get.md b/docs/user-guide/commands/argocd_gpg_get.md index e0ad3d9ee25d6..8547b22d8fc10 100644 --- a/docs/user-guide/commands/argocd_gpg_get.md +++ b/docs/user-guide/commands/argocd_gpg_get.md @@ -31,6 +31,7 @@ argocd gpg get KEYID [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_gpg_list.md b/docs/user-guide/commands/argocd_gpg_list.md index 50f0e72e83c0d..13ad13e5f7cd0 100644 --- a/docs/user-guide/commands/argocd_gpg_list.md +++ b/docs/user-guide/commands/argocd_gpg_list.md @@ -31,6 +31,7 @@ argocd gpg list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_gpg_rm.md b/docs/user-guide/commands/argocd_gpg_rm.md index ecf744988d0fd..7bee10529c970 100644 --- a/docs/user-guide/commands/argocd_gpg_rm.md +++ b/docs/user-guide/commands/argocd_gpg_rm.md @@ -17,6 +17,7 @@ argocd gpg rm KEYID [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_login.md b/docs/user-guide/commands/argocd_login.md index cad6572ce44cc..767c8876ed17c 100644 --- a/docs/user-guide/commands/argocd_login.md +++ b/docs/user-guide/commands/argocd_login.md @@ -41,6 +41,7 @@ argocd login cd.argoproj.io --core ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_logout.md b/docs/user-guide/commands/argocd_logout.md index 3e18c70a063a0..dad73d0b84b79 100644 --- a/docs/user-guide/commands/argocd_logout.md +++ b/docs/user-guide/commands/argocd_logout.md @@ -30,6 +30,7 @@ $ argocd logout ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj.md b/docs/user-guide/commands/argocd_proj.md index 5586463adee6e..ba4b101f96567 100644 --- a/docs/user-guide/commands/argocd_proj.md +++ b/docs/user-guide/commands/argocd_proj.md @@ -52,6 +52,7 @@ argocd proj [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_add-destination.md b/docs/user-guide/commands/argocd_proj_add-destination.md index 688aebf84156e..a4766008322d7 100644 --- a/docs/user-guide/commands/argocd_proj_add-destination.md +++ b/docs/user-guide/commands/argocd_proj_add-destination.md @@ -28,6 +28,7 @@ argocd proj add-destination PROJECT SERVER/NAME NAMESPACE [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_add-orphaned-ignore.md b/docs/user-guide/commands/argocd_proj_add-orphaned-ignore.md index 1b36d8a5ff0f1..97b24ff0340e9 100644 --- a/docs/user-guide/commands/argocd_proj_add-orphaned-ignore.md +++ b/docs/user-guide/commands/argocd_proj_add-orphaned-ignore.md @@ -28,6 +28,7 @@ argocd proj add-orphaned-ignore PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_add-signature-key.md b/docs/user-guide/commands/argocd_proj_add-signature-key.md index 404660510700b..9c1f9827583e4 100644 --- a/docs/user-guide/commands/argocd_proj_add-signature-key.md +++ b/docs/user-guide/commands/argocd_proj_add-signature-key.md @@ -24,6 +24,7 @@ argocd proj add-signature-key PROJECT KEY-ID [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_add-source-namespace.md b/docs/user-guide/commands/argocd_proj_add-source-namespace.md index ced1f6fa3c67d..c74e8c2436375 100644 --- a/docs/user-guide/commands/argocd_proj_add-source-namespace.md +++ b/docs/user-guide/commands/argocd_proj_add-source-namespace.md @@ -24,6 +24,7 @@ argocd proj add-source-namespace PROJECT NAMESPACE [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_add-source.md b/docs/user-guide/commands/argocd_proj_add-source.md index f0c2f18fd9792..670f399020f54 100644 --- a/docs/user-guide/commands/argocd_proj_add-source.md +++ b/docs/user-guide/commands/argocd_proj_add-source.md @@ -24,6 +24,7 @@ argocd proj add-source PROJECT URL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_allow-cluster-resource.md b/docs/user-guide/commands/argocd_proj_allow-cluster-resource.md index 338027e724bc2..14b1ac0ae87f4 100644 --- a/docs/user-guide/commands/argocd_proj_allow-cluster-resource.md +++ b/docs/user-guide/commands/argocd_proj_allow-cluster-resource.md @@ -25,6 +25,7 @@ argocd proj allow-cluster-resource PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_allow-namespace-resource.md b/docs/user-guide/commands/argocd_proj_allow-namespace-resource.md index 3e4a410f32a47..73b895af9d3b4 100644 --- a/docs/user-guide/commands/argocd_proj_allow-namespace-resource.md +++ b/docs/user-guide/commands/argocd_proj_allow-namespace-resource.md @@ -25,6 +25,7 @@ argocd proj allow-namespace-resource PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_create.md b/docs/user-guide/commands/argocd_proj_create.md index fd8687c1b2982..17fb12c6a6b44 100644 --- a/docs/user-guide/commands/argocd_proj_create.md +++ b/docs/user-guide/commands/argocd_proj_create.md @@ -40,6 +40,7 @@ argocd proj create PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_delete.md b/docs/user-guide/commands/argocd_proj_delete.md index 4d6c4a94f609c..76ea1538b5e87 100644 --- a/docs/user-guide/commands/argocd_proj_delete.md +++ b/docs/user-guide/commands/argocd_proj_delete.md @@ -24,6 +24,7 @@ argocd proj delete PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_deny-cluster-resource.md b/docs/user-guide/commands/argocd_proj_deny-cluster-resource.md index 4621b18c3efe1..1ef0d03b71f22 100644 --- a/docs/user-guide/commands/argocd_proj_deny-cluster-resource.md +++ b/docs/user-guide/commands/argocd_proj_deny-cluster-resource.md @@ -25,6 +25,7 @@ argocd proj deny-cluster-resource PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_deny-namespace-resource.md b/docs/user-guide/commands/argocd_proj_deny-namespace-resource.md index e8b55a7b0adb6..d02ef85f85a68 100644 --- a/docs/user-guide/commands/argocd_proj_deny-namespace-resource.md +++ b/docs/user-guide/commands/argocd_proj_deny-namespace-resource.md @@ -25,6 +25,7 @@ argocd proj deny-namespace-resource PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_edit.md b/docs/user-guide/commands/argocd_proj_edit.md index 63a584accfad8..8c2d07627cc45 100644 --- a/docs/user-guide/commands/argocd_proj_edit.md +++ b/docs/user-guide/commands/argocd_proj_edit.md @@ -24,6 +24,7 @@ argocd proj edit PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_get.md b/docs/user-guide/commands/argocd_proj_get.md index 2d2e437b79779..6aff7cf0c5ef6 100644 --- a/docs/user-guide/commands/argocd_proj_get.md +++ b/docs/user-guide/commands/argocd_proj_get.md @@ -28,6 +28,7 @@ argocd proj get PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_list.md b/docs/user-guide/commands/argocd_proj_list.md index d96c0c4bb13b8..503b63762ef81 100644 --- a/docs/user-guide/commands/argocd_proj_list.md +++ b/docs/user-guide/commands/argocd_proj_list.md @@ -28,6 +28,7 @@ argocd proj list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_remove-destination.md b/docs/user-guide/commands/argocd_proj_remove-destination.md index 612e1db68356a..e4547d1748668 100644 --- a/docs/user-guide/commands/argocd_proj_remove-destination.md +++ b/docs/user-guide/commands/argocd_proj_remove-destination.md @@ -24,6 +24,7 @@ argocd proj remove-destination PROJECT SERVER NAMESPACE [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_remove-orphaned-ignore.md b/docs/user-guide/commands/argocd_proj_remove-orphaned-ignore.md index 857cf3c595177..4adb28f0e5fb1 100644 --- a/docs/user-guide/commands/argocd_proj_remove-orphaned-ignore.md +++ b/docs/user-guide/commands/argocd_proj_remove-orphaned-ignore.md @@ -28,6 +28,7 @@ argocd proj remove-orphaned-ignore PROJECT GROUP KIND [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_remove-signature-key.md b/docs/user-guide/commands/argocd_proj_remove-signature-key.md index 61d6085022662..3b880def1e233 100644 --- a/docs/user-guide/commands/argocd_proj_remove-signature-key.md +++ b/docs/user-guide/commands/argocd_proj_remove-signature-key.md @@ -24,6 +24,7 @@ argocd proj remove-signature-key PROJECT KEY-ID [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_remove-source-namespace.md b/docs/user-guide/commands/argocd_proj_remove-source-namespace.md index 6a0ee319c7b9b..8bcb081d17b73 100644 --- a/docs/user-guide/commands/argocd_proj_remove-source-namespace.md +++ b/docs/user-guide/commands/argocd_proj_remove-source-namespace.md @@ -24,6 +24,7 @@ argocd proj remove-source-namespace PROJECT NAMESPACE [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_remove-source.md b/docs/user-guide/commands/argocd_proj_remove-source.md index d6a1c353059f3..b7fc972fe7b86 100644 --- a/docs/user-guide/commands/argocd_proj_remove-source.md +++ b/docs/user-guide/commands/argocd_proj_remove-source.md @@ -24,6 +24,7 @@ argocd proj remove-source PROJECT URL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role.md b/docs/user-guide/commands/argocd_proj_role.md index 9546cc4b7ab27..bbc687932632d 100644 --- a/docs/user-guide/commands/argocd_proj_role.md +++ b/docs/user-guide/commands/argocd_proj_role.md @@ -17,6 +17,7 @@ argocd proj role [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_add-group.md b/docs/user-guide/commands/argocd_proj_role_add-group.md index 4a3aa2f1e8be1..96743b827d154 100644 --- a/docs/user-guide/commands/argocd_proj_role_add-group.md +++ b/docs/user-guide/commands/argocd_proj_role_add-group.md @@ -17,6 +17,7 @@ argocd proj role add-group PROJECT ROLE-NAME GROUP-CLAIM [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_add-policy.md b/docs/user-guide/commands/argocd_proj_role_add-policy.md index d4804d31d66a1..5d887fc190931 100644 --- a/docs/user-guide/commands/argocd_proj_role_add-policy.md +++ b/docs/user-guide/commands/argocd_proj_role_add-policy.md @@ -49,6 +49,7 @@ ID ISSUED-AT EXPIRES-AT ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_create-token.md b/docs/user-guide/commands/argocd_proj_role_create-token.md index fc7eaf93c2307..8974c2ef8abb2 100644 --- a/docs/user-guide/commands/argocd_proj_role_create-token.md +++ b/docs/user-guide/commands/argocd_proj_role_create-token.md @@ -32,6 +32,7 @@ Create token succeeded for proj:test-project:test-role. ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_create.md b/docs/user-guide/commands/argocd_proj_role_create.md index 60974c9e1b4e6..1fe6adde29267 100644 --- a/docs/user-guide/commands/argocd_proj_role_create.md +++ b/docs/user-guide/commands/argocd_proj_role_create.md @@ -25,6 +25,7 @@ argocd proj role create PROJECT ROLE-NAME [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_delete-token.md b/docs/user-guide/commands/argocd_proj_role_delete-token.md index 006746f8faeeb..f0cd71f0a84fb 100644 --- a/docs/user-guide/commands/argocd_proj_role_delete-token.md +++ b/docs/user-guide/commands/argocd_proj_role_delete-token.md @@ -49,6 +49,7 @@ $ argocd proj role delete-token test-project test-role 1696769937 ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_delete.md b/docs/user-guide/commands/argocd_proj_role_delete.md index fe94a2231db60..5140ae097497a 100644 --- a/docs/user-guide/commands/argocd_proj_role_delete.md +++ b/docs/user-guide/commands/argocd_proj_role_delete.md @@ -23,6 +23,7 @@ $ argocd proj role delete test-project test-role ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_get.md b/docs/user-guide/commands/argocd_proj_role_get.md index e21276ce85116..7eeaeb42087a6 100644 --- a/docs/user-guide/commands/argocd_proj_role_get.md +++ b/docs/user-guide/commands/argocd_proj_role_get.md @@ -32,6 +32,7 @@ ID ISSUED-AT EXPIRES-AT ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_list-tokens.md b/docs/user-guide/commands/argocd_proj_role_list-tokens.md index 8d1fe93163dfc..2bf7ab3f64c1e 100644 --- a/docs/user-guide/commands/argocd_proj_role_list-tokens.md +++ b/docs/user-guide/commands/argocd_proj_role_list-tokens.md @@ -28,6 +28,7 @@ fa9d3517-c52d-434c-9bff-215b38508842 2023-10-08T11:08:18+01:00 Never ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_list.md b/docs/user-guide/commands/argocd_proj_role_list.md index 3cfd630ddc988..bdf71af22ed30 100644 --- a/docs/user-guide/commands/argocd_proj_role_list.md +++ b/docs/user-guide/commands/argocd_proj_role_list.md @@ -28,6 +28,7 @@ argocd proj role list PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_remove-group.md b/docs/user-guide/commands/argocd_proj_role_remove-group.md index a89e0bcfae315..3b31f7c820c4f 100644 --- a/docs/user-guide/commands/argocd_proj_role_remove-group.md +++ b/docs/user-guide/commands/argocd_proj_role_remove-group.md @@ -17,6 +17,7 @@ argocd proj role remove-group PROJECT ROLE-NAME GROUP-CLAIM [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_role_remove-policy.md b/docs/user-guide/commands/argocd_proj_role_remove-policy.md index 96aee05da86eb..069d1b7dcdcb4 100644 --- a/docs/user-guide/commands/argocd_proj_role_remove-policy.md +++ b/docs/user-guide/commands/argocd_proj_role_remove-policy.md @@ -49,6 +49,7 @@ ID ISSUED-AT EXPIRES-AT ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_set.md b/docs/user-guide/commands/argocd_proj_set.md index 3dc0cc06ec787..20f4c03cc73c5 100644 --- a/docs/user-guide/commands/argocd_proj_set.md +++ b/docs/user-guide/commands/argocd_proj_set.md @@ -38,6 +38,7 @@ argocd proj set PROJECT [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows.md b/docs/user-guide/commands/argocd_proj_windows.md index 0b22c2098dc82..c5b0cdfd2c9ca 100644 --- a/docs/user-guide/commands/argocd_proj_windows.md +++ b/docs/user-guide/commands/argocd_proj_windows.md @@ -34,6 +34,7 @@ argocd proj windows list ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_add.md b/docs/user-guide/commands/argocd_proj_windows_add.md index 52fd3a8354ee3..9610020c3a1bd 100644 --- a/docs/user-guide/commands/argocd_proj_windows_add.md +++ b/docs/user-guide/commands/argocd_proj_windows_add.md @@ -48,6 +48,7 @@ argocd proj windows add PROJECT \ ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_delete.md b/docs/user-guide/commands/argocd_proj_windows_delete.md index 6faf7dbeedc19..8ca1ad28dfd84 100644 --- a/docs/user-guide/commands/argocd_proj_windows_delete.md +++ b/docs/user-guide/commands/argocd_proj_windows_delete.md @@ -28,6 +28,7 @@ argocd proj windows delete new-project 1 ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_disable-manual-sync.md b/docs/user-guide/commands/argocd_proj_windows_disable-manual-sync.md index 3f01015395f1b..b4bbccef0ef1f 100644 --- a/docs/user-guide/commands/argocd_proj_windows_disable-manual-sync.md +++ b/docs/user-guide/commands/argocd_proj_windows_disable-manual-sync.md @@ -32,6 +32,7 @@ argocd proj windows disable-manual-sync default 0 ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_enable-manual-sync.md b/docs/user-guide/commands/argocd_proj_windows_enable-manual-sync.md index 7ecbb50e6ac1b..a8a2402037ca9 100644 --- a/docs/user-guide/commands/argocd_proj_windows_enable-manual-sync.md +++ b/docs/user-guide/commands/argocd_proj_windows_enable-manual-sync.md @@ -35,6 +35,7 @@ argocd proj windows enable-manual-sync my-app-project --message "Manual sync ini ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_list.md b/docs/user-guide/commands/argocd_proj_windows_list.md index 3c361f90d2a68..828406438c31d 100644 --- a/docs/user-guide/commands/argocd_proj_windows_list.md +++ b/docs/user-guide/commands/argocd_proj_windows_list.md @@ -32,6 +32,7 @@ argocd proj windows list test-project ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_proj_windows_update.md b/docs/user-guide/commands/argocd_proj_windows_update.md index e01e3787d51a2..de10f76b766fa 100644 --- a/docs/user-guide/commands/argocd_proj_windows_update.md +++ b/docs/user-guide/commands/argocd_proj_windows_update.md @@ -36,6 +36,7 @@ argocd proj windows update PROJECT ID \ ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_relogin.md b/docs/user-guide/commands/argocd_relogin.md index c3b28a46b21d7..9e15447b08ec4 100644 --- a/docs/user-guide/commands/argocd_relogin.md +++ b/docs/user-guide/commands/argocd_relogin.md @@ -41,6 +41,7 @@ argocd login cd.argoproj.io --core ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repo.md b/docs/user-guide/commands/argocd_repo.md index 4df85f7b00d3d..da44cd722ac1b 100644 --- a/docs/user-guide/commands/argocd_repo.md +++ b/docs/user-guide/commands/argocd_repo.md @@ -54,6 +54,7 @@ argocd repo rm https://github.com/yourusername/your-repo.git ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repo_add.md b/docs/user-guide/commands/argocd_repo_add.md index 8399d48302509..52f09b553f03b 100644 --- a/docs/user-guide/commands/argocd_repo_add.md +++ b/docs/user-guide/commands/argocd_repo_add.md @@ -78,6 +78,7 @@ argocd repo add REPOURL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repo_get.md b/docs/user-guide/commands/argocd_repo_get.md index e1d445d1068f6..d25e6ee2ff1e7 100644 --- a/docs/user-guide/commands/argocd_repo_get.md +++ b/docs/user-guide/commands/argocd_repo_get.md @@ -20,6 +20,7 @@ argocd repo get [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repo_list.md b/docs/user-guide/commands/argocd_repo_list.md index 06f1f788cb7c2..a78520696545d 100644 --- a/docs/user-guide/commands/argocd_repo_list.md +++ b/docs/user-guide/commands/argocd_repo_list.md @@ -19,6 +19,7 @@ argocd repo list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repo_rm.md b/docs/user-guide/commands/argocd_repo_rm.md index 4e44bf0acf90b..70549f0ae09d4 100644 --- a/docs/user-guide/commands/argocd_repo_rm.md +++ b/docs/user-guide/commands/argocd_repo_rm.md @@ -18,6 +18,7 @@ argocd repo rm REPO [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repocreds.md b/docs/user-guide/commands/argocd_repocreds.md index f073b2bbb6161..0679f80aef5c5 100644 --- a/docs/user-guide/commands/argocd_repocreds.md +++ b/docs/user-guide/commands/argocd_repocreds.md @@ -49,6 +49,7 @@ argocd repocreds [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repocreds_add.md b/docs/user-guide/commands/argocd_repocreds_add.md index ce66dc49cfe8c..6e6fa0b6e86c4 100644 --- a/docs/user-guide/commands/argocd_repocreds_add.md +++ b/docs/user-guide/commands/argocd_repocreds_add.md @@ -54,6 +54,7 @@ argocd repocreds add REPOURL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repocreds_list.md b/docs/user-guide/commands/argocd_repocreds_list.md index ae358afab2056..64acfe837cb6f 100644 --- a/docs/user-guide/commands/argocd_repocreds_list.md +++ b/docs/user-guide/commands/argocd_repocreds_list.md @@ -34,6 +34,7 @@ argocd repocreds list [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_repocreds_rm.md b/docs/user-guide/commands/argocd_repocreds_rm.md index 3bfee30eb40a3..96d2898fb495c 100644 --- a/docs/user-guide/commands/argocd_repocreds_rm.md +++ b/docs/user-guide/commands/argocd_repocreds_rm.md @@ -24,6 +24,7 @@ argocd repocreds rm CREDSURL [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file diff --git a/docs/user-guide/commands/argocd_version.md b/docs/user-guide/commands/argocd_version.md index 6a7fa7baf5ecb..5a99c1bb63daa 100644 --- a/docs/user-guide/commands/argocd_version.md +++ b/docs/user-guide/commands/argocd_version.md @@ -56,6 +56,7 @@ argocd version [flags] ### Options inherited from parent commands ``` + --argocd-context string The name of the Argo-CD server context to use --auth-token string Authentication token --client-crt string Client certificate file --client-crt-key string Client certificate key file