`argocd app diff` 명령어 레퍼런스
argocd app diff 명령어 레퍼런스 (Command Reference)
애플리케이션의 대상(target) 상태와 실제(live) 상태를 비교해 차이를 보여주는 명령어예요. 배포 전에 무엇이 달라질지 미리 확인할 때 유용해요.
출처: 문서
본문
argocd app diff
대상 상태와 실제 상태를 비교해요.
시놉시스 (Synopsis)
대상 상태와 실제(live) 상태를 diff로 비교해요. 'diff' 도구로 차이를 렌더링하며, KUBECTL_EXTERNAL_DIFF 환경 변수로 직접 만든 diff 도구를 선택할 수 있어요. 반환 코드는 일반 오류 2, 차이 발견 시 1, 차이 없음 0이에요. Kubernetes Secret은 이 diff에서 제외돼요.
argocd app diff APPNAME [flags]
옵션 (Options)
-N, --app-namespace string Only render the difference in namespace
--diff-exit-code int Return specified exit code when there is a diff. Typical error code is 20 but use another exit code if you want to differentiate from the generic exit code (20) returned by all CLI commands. (default 1)
--exit-code Return non-zero exit code when there is a diff. May also return non-zero exit code if there is an error. (default true)
--hard-refresh Refresh application data as well as target manifests cache
-h, --help help for diff
--ignore-normalizer-jq-execution-timeout duration Set ignore normalizer JQ execution timeout (default 1s)
--local string Compare live app to a local manifests
--local-include stringArray Used with --server-side-generate, specify patterns of filenames to send. Matching is based on filename and not path. (default [*.yaml,*.yml,*.json])
--local-repo-root string Path to the repository root. Used together with --local allows setting the repository root (default "/")
--refresh Refresh application data when retrieving
--revision string Compare live app to a particular revision
--revisions stringArray Show manifests at specific revisions for source position in source-positions
--server-side-diff Use server-side diff to calculate the diff. This will default to true if the ServerSideDiff annotation is set on the application.
--server-side-diff-concurrency int Max concurrent batches for server-side diff. -1 = unlimited, 1 = sequential, 2+ = concurrent (0 = invalid) (default -1)
--server-side-diff-max-batch-kb int Max batch size in KB for server-side diff. Smaller values are safer for proxies (default 250)
--server-side-generate Used with --local, this will send your manifests to the server for diffing
--source-names stringArray List of source names. Default is an empty array.
--source-positions int64Slice List of source positions. Default is empty array. Counting start at 1. (default [])
상위 명령에서 상속된 옵션
--argocd-context string The name of the Argo-CD server context to use
--auth-token string Authentication token; set this or the ARGOCD_AUTH_TOKEN environment variable
--client-crt string Client certificate file
--client-crt-key string Client certificate key file
--config string Path to Argo CD config (default "/home/user/.config/argocd/config")
--controller-name string Name of the Argo CD Application controller; set this or the ARGOCD_APPLICATION_CONTROLLER_NAME environment variable when the controller's name label differs from the default, for example when installing via the Helm chart (default "argocd-application-controller")
--core If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server
--grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2.
--grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root.
-H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers)
--http-retry-max int Maximum number of retries to establish http connection to Argo CD server
--insecure Skip server certificate and domain verification
--kube-context string Directs the command to the given kube-context
--logformat string Set the logging format. One of: json|text (default "json")
--loglevel string Set the logging level. One of: debug|info|warn|error (default "info")
--plaintext Disable TLS
--port-forward Connect to a random argocd-server port using port forwarding
--port-forward-namespace string Namespace name which should be used for port forwarding
--prompts-enabled Force optional interactive prompts to be enabled or disabled, overriding local configuration. If not specified, the local configuration value will be used, which is false by default.
--redis-compress string Enable this if the application controller is configured with redis compression enabled. (possible values: gzip, none) (default "gzip")
--redis-haproxy-name string Name of the Redis HA Proxy; set this or the ARGOCD_REDIS_HAPROXY_NAME environment variable when the HA Proxy's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis-ha-haproxy")
--redis-name string Name of the Redis deployment; set this or the ARGOCD_REDIS_NAME environment variable when the Redis's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis")
--repo-server-name string Name of the Argo CD Repo server; set this or the ARGOCD_REPO_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-repo-server")
--server string Argo CD server address
--server-crt string Server certificate file
--server-name string Name of the Argo CD API server; set this or the ARGOCD_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-server")
더 알아보기 (Learn more)
- argocd app - 애플리케이션을 관리해요.