Helm 升级

helm upgrade

升级版本

简介

该命令将发布升级到新版的chart。

升级参数必须是发布和chart。chart参数可以是:chart引用(‘example/mariadb’),chart目录路径,打包的chart或者完整URL。 对于chart引用,除非使用’—version’参数指定,否则会使用最新版本。

要在chart中重写value,需要使用’—values’参数并传一个文件或者从命令行使用’—set’参数传个配置, 要强制字符串值,使用’—set-string’。当值本身对于命令行太长或者是动态生成的时候,可以使用 ‘—set-file’ 设置独立的值。

可以多次指定’—values’/‘-f’参数,最后(最右边)指定的文件优先级最高。比如如果myvalues.yaml和override.yaml同时包含了名为 ‘Test’的key,override.yaml中的设置会优先使用:

  1. $ helm upgrade -f myvalues.yaml -f override.yaml redis ./redis

可以多次指定’—set’参数,最后(最右边)指定的优先级最高。比如’bar’ 和 ‘newbar’都设置了一个名为’foo’的可以, ‘newbar’的值会优先使用:

  1. $ helm upgrade --set foo=bar --set foo=newbar redis ./redis
  1. helm upgrade [RELEASE] [CHART] [flags]

可选项

  1. --atomic if set, upgrade process rolls back changes made in case of failed upgrade. The --wait flag will be set automatically if --atomic is used
  2. --ca-file string verify certificates of HTTPS-enabled servers using this CA bundle
  3. --cert-file string identify HTTPS client using this SSL certificate file
  4. --cleanup-on-fail allow deletion of new resources created in this upgrade when upgrade fails
  5. --create-namespace if --install is set, create the release namespace if not present
  6. --dependency-update update dependencies if they are missing before installing the chart
  7. --description string add a custom description
  8. --devel use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored
  9. --disable-openapi-validation if set, the upgrade process will not validate rendered templates against the Kubernetes OpenAPI Schema
  10. --dry-run simulate an upgrade
  11. --force force resource updates through a replacement strategy
  12. -h, --help help for upgrade
  13. --history-max int limit the maximum number of revisions saved per release. Use 0 for no limit (default 10)
  14. --insecure-skip-tls-verify skip tls certificate checks for the chart download
  15. -i, --install if a release by this name doesn't already exist, run an install
  16. --key-file string identify HTTPS client using this SSL key file
  17. --keyring string location of public keys used for verification (default "~/.gnupg/pubring.gpg")
  18. --no-hooks disable pre/post upgrade hooks
  19. -o, --output format prints the output in the specified format. Allowed values: table, json, yaml (default table)
  20. --pass-credentials pass credentials to all domains
  21. --password string chart repository password where to locate the requested chart
  22. --post-renderer postrenderer the path to an executable to be used for post rendering. If it exists in $PATH, the binary will be used, otherwise it will try to look for the executable at the given path (default exec)
  23. --render-subchart-notes if set, render subchart notes along with the parent
  24. --repo string chart repository url where to locate the requested chart
  25. --reset-values when upgrading, reset the values to the ones built into the chart
  26. --reuse-values when upgrading, reuse the last release's values and merge in any overrides from the command line via --set and -f. If '--reset-values' is specified, this is ignored
  27. --set stringArray set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
  28. --set-file stringArray set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)
  29. --set-string stringArray set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
  30. --skip-crds if set, no CRDs will be installed when an upgrade is performed with install flag enabled. By default, CRDs are installed if not already present, when an upgrade is performed with install flag enabled
  31. --timeout duration time to wait for any individual Kubernetes operation (like Jobs for hooks) (default 5m0s)
  32. --username string chart repository username where to locate the requested chart
  33. -f, --values strings specify values in a YAML file or a URL (can specify multiple)
  34. --verify verify the package before using it
  35. --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
  36. --wait if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment, StatefulSet, or ReplicaSet are in a ready state before marking the release as successful. It will wait for as long as --timeout
  37. --wait-for-jobs if set and --wait enabled, will wait until all Jobs have been completed before marking the release as successful. It will wait for as long as --timeout

从父命令继承的命令

  1. --debug enable verbose output
  2. --kube-apiserver string the address and the port for the Kubernetes API server
  3. --kube-as-group stringArray group to impersonate for the operation, this flag can be repeated to specify multiple groups.
  4. --kube-as-user string username to impersonate for the operation
  5. --kube-ca-file string the certificate authority file for the Kubernetes API server connection
  6. --kube-context string name of the kubeconfig context to use
  7. --kube-token string bearer token used for authentication
  8. --kubeconfig string path to the kubeconfig file
  9. -n, --namespace string namespace scope for this request
  10. --registry-config string path to the registry config file (default "~/.config/helm/registry/config.json")
  11. --repository-cache string path to the file containing cached repository indexes (default "~/.cache/helm/repository")
  12. --repository-config string path to the file containing repository names and URLs (default "~/.config/helm/repositories.yaml")

请参阅

  • helm - 针对Kubernetes的Helm包管理器