helm pull
helm pull (저장소에서 차트 다운로드)
패키지 저장소에서 차트를 가져와 로컬에 다운로드하고, 선택적으로 로컬 디렉터리에 푸는 명령입니다.
출처: 문서
본문
패키지 저장소에서 패키지를 가져와 로컬에 다운로드합니다.
이는 패키지를 검사·수정·재패키징하기 위해 가져올 때 유용합니다. 또한 차트를 설치하지 않고 암호화 검증을 수행하는 데도 사용할 수 있습니다.
다운로드 후 차트를 푸는 옵션도 있습니다. 이렇게 하면 차트를 위한 디렉터리를 만들고 그 디렉터리에 압축을 풉니다.
--verify 플래그를 지정하면 요청한 차트는 반드시 provenance(출처) 파일을 가져야 하며, 검증 과정을 반드시 통과해야 합니다. 어느 부분이라도 실패하면 오류가 발생하고 차트는 로컬에 저장되지 않습니다.
helm pull [chart URL | repo/chartname] [...] [flags]
옵션 (Options)
--ca-file string verify certificates of HTTPS-enabled servers using this CA bundle
--cert-file string identify HTTPS client using this SSL certificate file
-d, --destination string location to write the chart. If this and untardir are specified, untardir is appended to this (default ".")
--devel use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.
-h, --help help for pull
--insecure-skip-tls-verify skip tls certificate checks for the chart download
--key-file string identify HTTPS client using this SSL key file
--keyring string location of public keys used for verification (default "~/.gnupg/pubring.gpg")
--pass-credentials pass credentials to all domains
--password string chart repository password where to locate the requested chart
--plain-http use insecure HTTP connections for the chart download
--prov fetch the provenance file, but don't perform verification
--repo string chart repository url where to locate the requested chart
--untar if set to true, will untar the chart after downloading it
--untardir string if untar is specified, this flag specifies the name of the directory into which the chart is expanded (default ".")
--username string chart repository username where to locate the requested chart
--verify verify the package before using it
--version string specify a version constraint for the chart version to use. This constraint can be a specific tag (e.g. 1.1.1) or it may reference a valid range (e.g. ^2.0.0). If this is not specified, the latest version is used
부모 명령에서 상속된 옵션 (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 패키지 매니저입니다.