Skip to content

Commit 7ba4394

Browse files
authored
Merge pull request kubernetes-sigs#2000 from aramase/automated-cherry-pick-of-#1999-upstream-release-1.5
release: update manifest and helm charts for v1.5.6
2 parents 10cafd0 + a503ce0 commit 7ba4394

File tree

12 files changed

+27
-20
lines changed

12 files changed

+27
-20
lines changed

charts/secrets-store-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: secrets-store-csi-driver
3-
version: 1.5.5
4-
appVersion: 1.5.5
3+
version: 1.5.6
4+
appVersion: 1.5.6
55
kubeVersion: ">=1.16.0-0"
66
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes cluster.
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png

charts/secrets-store-csi-driver/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ The following table lists the configurable parameters of the csi-secrets-store-p
3333
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
3434
| `linux.image.repository` | Linux image repository | `registry.k8s.io/csi-secrets-store/driver` |
3535
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
36-
| `linux.image.tag` | Linux image tag | `v1.5.5` |
36+
| `linux.image.tag` | Linux image tag | `v1.5.6` |
3737
| `linux.image.digest` | Linux image digest, image pull from digest instead of tag if specified | `""` |
3838
| `linux.crds.enabled` | If the CRDs should be managed by the chart | `true` |
3939
| `linux.crds.image.repository` | Linux crds image repository | `registry.k8s.io/csi-secrets-store/driver-crds` |
4040
| `linux.crds.image.pullPolicy` | Linux crds image pull policy | `IfNotPresent` |
41-
| `linux.crds.image.tag` | Linux crds image tag | `v1.5.5` |
41+
| `linux.crds.image.tag` | Linux crds image tag | `v1.5.6` |
4242
| `linux.crds.resources` | The resource request/limits for the linux crds container image | `{}` |
4343
| `linux.crds.podLabels` | Linux *Pod* labels appended to CRD helm hook job pods | `{}` |
4444
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
@@ -72,7 +72,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
7272
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
7373
| `windows.image.repository` | Windows image repository | `registry.k8s.io/csi-secrets-store/driver` |
7474
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
75-
| `windows.image.tag` | Windows image tag | `v1.5.5` |
75+
| `windows.image.tag` | Windows image tag | `v1.5.6` |
7676
| `windows.image.digest` | Windows image digest, image pull from digest instead of tag if specified | `""` |
7777
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
7878
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |
@@ -116,3 +116,4 @@ The following table lists the configurable parameters of the csi-secrets-store-p
116116
| `providerHealthCheckInterval` | Provider healthcheck interval duration | `2m` |
117117
| `imagePullSecrets` | One or more secrets to be used when pulling images | `""` |
118118
| `tokenRequests` | Token requests configuration for the csi driver. Refer to [doc](https://kubernetes-csi.github.io/docs/token-requests.html) for more info. Supported only for Kubernetes v1.20+ | `""` |
119+
| `automountServiceAccountToken` | Controls whether a service account token should be automatically mounted on the Pod spec | `true` |

charts/secrets-store-csi-driver/templates/secrets-store-csi-driver-windows.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ spec:
2929
{{ toYaml .Values.windows.podAnnotations | indent 8 }}
3030
{{- end }}
3131
spec:
32+
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
3233
serviceAccountName: secrets-store-csi-driver
3334
{{- if .Values.imagePullSecrets }}
3435
imagePullSecrets:

charts/secrets-store-csi-driver/templates/secrets-store-csi-driver.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ spec:
2929
{{ toYaml .Values.linux.podAnnotations | indent 8 }}
3030
{{- end }}
3131
spec:
32+
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
3233
serviceAccountName: secrets-store-csi-driver
3334
{{- if .Values.imagePullSecrets }}
3435
imagePullSecrets:

charts/secrets-store-csi-driver/values.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ linux:
22
enabled: true
33
image:
44
repository: registry.k8s.io/csi-secrets-store/driver
5-
tag: v1.5.5
5+
tag: v1.5.6
66
#digest: sha256:
77
pullPolicy: IfNotPresent
88

99
crds:
1010
enabled: true
1111
image:
1212
repository: registry.k8s.io/csi-secrets-store/driver-crds
13-
tag: v1.5.5
13+
tag: v1.5.6
1414
pullPolicy: IfNotPresent
1515
## Optionally override resource limits for crd hooks(jobs)
1616
resources: {}
@@ -110,7 +110,7 @@ windows:
110110
enabled: false
111111
image:
112112
repository: registry.k8s.io/csi-secrets-store/driver
113-
tag: v1.5.5
113+
tag: v1.5.6
114114
#digest: sha256:
115115
pullPolicy: IfNotPresent
116116

@@ -239,6 +239,10 @@ tokenRequests: []
239239
# - audience: aud1
240240
# - audience: aud2
241241

242+
## automountServiceAccountToken controls whether a service account token
243+
## should be automatically mounted on the Pod spec
244+
automountServiceAccountToken: true
245+
242246
# -- Labels to apply to all resources
243247
commonLabels: {}
244248
# team_name: dev

deploy/secrets-store-csi-driver-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
cpu: 100m
3737
memory: 100Mi
3838
- name: secrets-store
39-
image: registry.k8s.io/csi-secrets-store/driver:v1.5.5
39+
image: registry.k8s.io/csi-secrets-store/driver:v1.5.6
4040
args:
4141
- "--endpoint=$(CSI_ENDPOINT)"
4242
- "--nodeid=$(KUBE_NODE_NAME)"

deploy/secrets-store-csi-driver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
cpu: 10m
3737
memory: 20Mi
3838
- name: secrets-store
39-
image: registry.k8s.io/csi-secrets-store/driver:v1.5.5
39+
image: registry.k8s.io/csi-secrets-store/driver:v1.5.6
4040
args:
4141
- "--endpoint=$(CSI_ENDPOINT)"
4242
- "--nodeid=$(KUBE_NODE_NAME)"

manifest_staging/charts/secrets-store-csi-driver/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: secrets-store-csi-driver
3-
version: 1.5.5
4-
appVersion: 1.5.5
3+
version: 1.5.6
4+
appVersion: 1.5.6
55
kubeVersion: ">=1.16.0-0"
66
description: A Helm chart to install the SecretsStore CSI Driver inside a Kubernetes cluster.
77
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png

manifest_staging/charts/secrets-store-csi-driver/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ The following table lists the configurable parameters of the csi-secrets-store-p
3333
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
3434
| `linux.image.repository` | Linux image repository | `registry.k8s.io/csi-secrets-store/driver` |
3535
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
36-
| `linux.image.tag` | Linux image tag | `v1.5.5` |
36+
| `linux.image.tag` | Linux image tag | `v1.5.6` |
3737
| `linux.image.digest` | Linux image digest, image pull from digest instead of tag if specified | `""` |
3838
| `linux.crds.enabled` | If the CRDs should be managed by the chart | `true` |
3939
| `linux.crds.image.repository` | Linux crds image repository | `registry.k8s.io/csi-secrets-store/driver-crds` |
4040
| `linux.crds.image.pullPolicy` | Linux crds image pull policy | `IfNotPresent` |
41-
| `linux.crds.image.tag` | Linux crds image tag | `v1.5.5` |
41+
| `linux.crds.image.tag` | Linux crds image tag | `v1.5.6` |
4242
| `linux.crds.resources` | The resource request/limits for the linux crds container image | `{}` |
4343
| `linux.crds.podLabels` | Linux *Pod* labels appended to CRD helm hook job pods | `{}` |
4444
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
@@ -72,7 +72,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
7272
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
7373
| `windows.image.repository` | Windows image repository | `registry.k8s.io/csi-secrets-store/driver` |
7474
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
75-
| `windows.image.tag` | Windows image tag | `v1.5.5` |
75+
| `windows.image.tag` | Windows image tag | `v1.5.6` |
7676
| `windows.image.digest` | Windows image digest, image pull from digest instead of tag if specified | `""` |
7777
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
7878
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |

manifest_staging/charts/secrets-store-csi-driver/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ linux:
22
enabled: true
33
image:
44
repository: registry.k8s.io/csi-secrets-store/driver
5-
tag: v1.5.5
5+
tag: v1.5.6
66
#digest: sha256:
77
pullPolicy: IfNotPresent
88

99
crds:
1010
enabled: true
1111
image:
1212
repository: registry.k8s.io/csi-secrets-store/driver-crds
13-
tag: v1.5.5
13+
tag: v1.5.6
1414
pullPolicy: IfNotPresent
1515
## Optionally override resource limits for crd hooks(jobs)
1616
resources: {}
@@ -110,7 +110,7 @@ windows:
110110
enabled: false
111111
image:
112112
repository: registry.k8s.io/csi-secrets-store/driver
113-
tag: v1.5.5
113+
tag: v1.5.6
114114
#digest: sha256:
115115
pullPolicy: IfNotPresent
116116

0 commit comments

Comments
 (0)