Helm
Helm 是 Kubernetes 的包管理工具。Helm Chart 为 Kubernetes YAML 清单文件提供了模板语法。借助 Helm,开发人员或集群管理员可以创建称为 Chart 的可配置模板,而不仅仅是使用静态清单。如果你需要创建自己的 Chart catalog,请参阅 https://helm.sh/docs/intro/quickstart/。
K3s 不需要使用任何特殊配置来支持 Helm。请确保你已根据集群访问文档正确设置了 kubeconfig 路径。
K3s 包含一个 Helm Controller,它使用 HelmChart 自定义资源定义 (CRD) 来管理 Helm Chart 的安装、升级、重新配置和卸载。与自动部署 AddOn 清单配合使用后,它可以在磁盘上创建单个文件,自动在集群上安装 Helm Chart。
使用 Helm Controller
HelmChart Custom Resource 捕获了你通常传递给 helm
命令行工具的大部分选项。
HelmChart 字段定义
|
字段 | 默认 | 描述 | Helm 参数/标志等效项 |
---|---|---|---|
metadata.name |
Helm Chart 名称 |
NAME |
|
spec.chart |
仓库中的 Helm Chart 名称,或 chart archive (.tgz) 的完整 HTTPS URL |
CHART |
|
spec.chartContent |
Base64 编码的 chart archive .tgz,覆盖 spec.chart |
CHART |
|
spec.targetNamespace |
default |
Helm Chart 目标命名空间 |
|
spec.createNamespace |
false |
Create target namespace if not present |
|
spec.version |
Helm Chart 版本(通过仓库安装时) |
|
|
spec.repo |
Helm Chart 仓库 URL |
|
|
spec.repoCA |
指定启用 HTTPS 的 Server 的证书 |
|
|
spec.repoCAConfigMap |
Reference to a ConfigMap containing CA Certificates to be be trusted by Helm. Can be used along with or instead of |
|
|
spec.plainHTTP |
false |
Use insecure HTTP connections for the chart download. |
|
spec.insecureSkipTLSVerify |
false |
Skip TLS certificate checks for the chart download. |
|
spec.helmVersion |
v3 |
Helm version to use. Only |
|
spec.bootstrap |
False |
如果需要此 Chart 来引导集群(Cloud Controller Manager 等),请设置为 |
|
spec.jobImage |
指定安装 helm chart 时要使用的镜像。例如:rancher/klipper-helm:v0.3.0 |
||
spec.podSecurityContext |
Custom |
||
spec.securityContext |
Custom |
||
spec.backOffLimit |
1000 |
Specify the number of retries before considering a job failed. |
|
spec.timeout |
300s |
Helm 操作的超时,作为 duration string( |
|
spec.failurePolicy |
reinstall |
如果设置为 |
|
spec.authSecret |
Reference to Secret of type |
||
spec.authPassCredentials |
false |
Pass Basic auth credentials to all domains. |
|
spec.dockerRegistrySecret |
Reference to Secret of type |
||
spec.set |
覆盖简单的默认 Chart 值。优先于通过 valuesContent 设置的选项。 |
|
|
spec.valuesContent |
通过 YAML 文件内容覆盖复杂的默认 Chart 值 |
|
|
spec.valuesSecrets |
Override complex Chart values via references to external Secrets |
|
你可以通过集群内的 Kubernetes APIServer 匿名访问 /var/lib/rancher/k3s/server/static/
中的内容。此 URL 可以使用 spec.chart
字段中的特殊变量 %{KUBERNETES_API}%
进行模板化。例如,打包的 Traefik 组件通过 https://%{KUBERNETES_API}%/static/charts/traefik-VERSION.tgz
加载 Chart。
Chart values are used in the following order, from least to greatest precedence:
-
Chart default values
-
HelmChart
spec.valuesContent
-
HelmChart
spec.valuesSecrets
in listed order of secret name and keys -
HelmChartConfig
spec.valuesContent
-
HelmChartConfig
spec.valuesSecrets
in listed order of secret name and keys -
HelmChart
spec.set
以下示例说明了如何从 Bitnami Chart 仓库部署 Apache,并覆盖某些默认的 Chart 值。请注意,HelmChart 资源本身位于 kube-system
命名空间中,但 Chart 的资源将部署到在同一清单中创建的 web
命名空间。如果你希望将 HelmChart 资源与其部署的资源分开,这将很有用。
apiVersion: v1
kind: Namespace
metadata:
name: web
---
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
name: apache
namespace: kube-system
spec:
repo: https://charts.bitnami.com/bitnami
chart: apache
targetNamespace: web
valuesContent: |-
service:
type: ClusterIP
ingress:
enabled: true
hostname: www.example.com
metrics:
enabled: true
An example of deploying a helm chart from a private repo with authentication:
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
namespace: kube-system
name: example-app
spec:
targetNamespace: example-namespace
createNamespace: true
version: v1.2.3
chart: example-app
repo: https://secure-repo.example.com
authSecret:
name: example-repo-auth
repoCAConfigMap:
name: example-repo-ca
valuesContent: |-
image:
tag: v1.2.2
---
apiVersion: v1
kind: Secret
metadata:
namespace: kube-system
name: example-repo-auth
type: kubernetes.io/basic-auth
stringData:
username: user
password: pass
---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: kube-system
name: example-repo-ca
data:
ca.crt: |-
-----BEGIN CERTIFICATE-----
<YOUR CERTIFICATE>
-----END CERTIFICATE-----
Chart Values from Secrets
Chart values can be read from externally-managed Secrets, instead of storing the values in the spec.set
or spec.valuesContent
fields. This should be done when passing confidential information such as credentials in to Charts that do not support referring to existing Secrets via the existingSecret
pattern.
As with other Secrets (spec.authSecret
and spec.dockerRegistrySecret
), Secrets referenced in spec.valuesSecrets
must be in the same namespace as the HelmChart.
Each listed valuesSecrets
entry has the following fields:
Field | Description |
---|---|
name |
The name of the Secret. Required. |
keys |
List of keys to read values from, values are used in the listed order. Required. |
ignoreUpdates |
Mark this Secret as optional, and do not update the chart if the Secret changes. Optional, defaults to |
-
If
ignoreUpdates
is set tofalse
or unspecified, the Secret and all listed keys must exist. Any change to a referenced values Secret will cause the chart to be updated with new values. -
If
ignoreUpdates
is set totrue
, the Secret is used if it exists when the Chart is created, or updated due to any other change to related resources. Changes to the Secret will not cause the chart to be updated.
An example of deploying a helm chart using an existing Secret with two keys:
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
namespace: kube-system
name: example-app
spec:
targetNamespace: example-namespace
createNamespace: true
version: v1.2.3
chart: example-app
repo: https://repo.example.com
valuesContent: |-
image:
tag: v1.2.2
valuesSecrets:
- name: example-app-custom-values
ignoreUpdates: false
keys:
- someValues
- moreValues
---
apiVersion: v1
kind: Secret
metadata:
namespace: kube-system
name: example-app-custom-values
stringData:
moreValues: |-
database:
address: db.example.com
username: user
password: pass
someValues: |-
adminUser:
create: true
username: admin
password: secret
使用 HelmChartConfig 自定义打包组件
为了允许覆盖部署为 HelmCharts(例如 Traefik)的打包组件的值,K3s 支持通过 HelmChartConfig 资源进行自定义部署。HelmChartConfig 资源必须与对应的 HelmChart 名称和命名空间匹配,并且支持提供额外的 valuesContent
,它作为附加值文件传递给 helm
命令。
HelmChartConfig Field Definitions
Field | Description |
---|---|
metadata.name |
Helm Chart name - must match the HelmChart resource name. |
spec.valuesContent |
Override complex default Chart values via YAML file content. |
spec.valuesSecrets |
Override complect default Chart values via external Secrets. |
spec.failurePolicy |
Set to |
HelmChart |
例如,要自定义打包的 Traefik ingress 配置,你可以创建一个名为 /var/lib/rancher/k3s/server/manifests/traefik-config.yaml
的文件并使用以下内容填充它:
apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
name: traefik
namespace: kube-system
spec:
valuesContent: |-
image:
repository: docker.io/library/traefik
tag: 3.3.5
ports:
web:
forwardedHeaders:
trustedIPs:
- 10.0.0.0/8