helm list
helm list (릴리즈 목록 나열)
특정 네임스페이스에 배포된 모든 헬름 릴리즈를 나열하는 명령입니다. 상태별 필터, 정렬, 필터 정규식, 페이지네이션을 지원합니다.
출처: 문서
본문
이 명령은 지정된 네임스페이스(네임스페이스를 지정하지 않으면 현재 네임스페이스 컨텍스트를 사용)의 모든 릴리즈를 나열합니다.
기본적으로 어떤 상태의 릴리즈든 모두 나열합니다. --deployed, --failed, --pending, --uninstalled, --superseded, --uninstalling 같은 개별 상태 필터를 사용해 특정 상태의 릴리즈만 보여줄 수 있습니다. 이런 플래그는 결합할 수도 있습니다. 예: --deployed --failed.
기본적으로 항목은 알파벳순으로 정렬됩니다. 릴리즈 날짜로 정렬하려면 -d 플래그를 사용하세요.
--filter 플래그를 제공하면 필터로 취급됩니다. 필터는 릴리즈 목록에 적용되는 정규식(Perl 호환)입니다. 필터와 일치하는 항목만 반환됩니다.
$ helm list --filter 'ara[a-z]+'NAME UPDATED CHARTmaudlin-arachnid 2020-06-18 14:17:46.125134977 +0000 UTC alpine-0.1.0
결과가 없으면 helm list는 출력 없이(또는 -q 플래그가 없는 경우 헤더만) 종료 코드 0으로 종료됩니다.
기본적으로 최대 256개 항목이 반환됩니다. 이를 제한하려면 --max 플래그를 사용하세요. --max를 0으로 설정하면 모든 결과를 반환하는 것이 아니라 서버 기본값(256보다 훨씬 클 수 있음)을 반환합니다. --max 플래그를 --offset 플래그와 함께 사용하면 결과를 페이지네이션할 수 있습니다.
helm list [flags]
옵션 (Options)
-A, --all-namespaces list releases across all namespaces
-d, --date sort by release date
--deployed show deployed releases
--failed show failed releases
-f, --filter string a regular expression (Perl compatible). Any releases that match the expression will be included in the results
-h, --help help for list
-m, --max int maximum number of releases to fetch (default 256)
--no-headers don't print headers when using the default output format
--offset int next release index in the list, used to offset from start value
-o, --output format prints the output in the specified format. Allowed values: table, json, yaml (default table)
--pending show pending releases
-r, --reverse reverse the sort order
-l, --selector string Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2). Works only for secret(default) and configmap storage backends.
-q, --short output short (quiet) listing format
--superseded show superseded releases
--time-format string format time using golang time formatter. Example: --time-format "2006-01-02 15:04:05Z0700"
--uninstalled show uninstalled releases (if 'helm uninstall --keep-history' was used)
--uninstalling show releases that are currently being uninstalled
부모 명령에서 상속된 옵션 (Options inherited from parent commands)
--burst-limit int client-side default throttling limit (default 100)
--color string use colored output (never, auto, always) (default "auto")
--colour string use colored output (never, auto, always) (default "auto")
--content-cache string path to the directory containing cached content (e.g. charts) (default "~/.cache/helm/content")
--debug enable verbose output
--kube-apiserver string the address and the port for the Kubernetes API server
--kube-as-group stringArray group to impersonate for the operation, this flag can be repeated to specify multiple groups.
--kube-as-user string username to impersonate for the operation
--kube-ca-file string the certificate authority file for the Kubernetes API server connection
--kube-context string name of the kubeconfig context to use
--kube-insecure-skip-tls-verify if true, the Kubernetes API server's certificate will not be checked for validity. This will make your HTTPS connections insecure
--kube-tls-server-name string server name to use for Kubernetes API server certificate validation. If it is not provided, the hostname used to contact the server is used
--kube-token string bearer token used for authentication
--kubeconfig string path to the kubeconfig file
-n, --namespace string namespace scope for this request
--qps float32 queries per second used when communicating with the Kubernetes API, not including bursting
--registry-config string path to the registry config file (default "~/.config/helm/registry/config.json")
--repository-cache string path to the directory containing cached repository indexes (default "~/.cache/helm/repository")
--repository-config string path to the file containing repository names and URLs (default "~/.config/helm/repositories.yaml")
더 알아보기 (Learn more)
- helm - 쿠버네티스를 위한 Helm 패키지 매니저입니다.