Skip to content

Commit 15e9585

Browse files
committed
release: update manifests and helm chart for 1.1.2
Signed-off-by: Tommy Murphy <tommymurphy@google.com>
1 parent f672a82 commit 15e9585

12 files changed

+37
-31
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.1.1
4-
appVersion: 1.1.1
3+
version: 1.1.2
4+
appVersion: 1.1.2
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ The following table lists the configurable parameters of the csi-secrets-store-p
3232
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
3333
| `linux.image.repository` | Linux image repository | `k8s.gcr.io/csi-secrets-store/driver` |
3434
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
35-
| `linux.image.tag` | Linux image tag | `v1.1.1` |
35+
| `linux.image.tag` | Linux image tag | `v1.1.2` |
3636
| `linux.crds.image.repository` | Linux crds image repository | `k8s.gcr.io/csi-secrets-store/driver-crds` |
3737
| `linux.crds.image.pullPolicy` | Linux crds image pull policy | `IfNotPresent` |
38-
| `linux.crds.image.tag` | Linux crds image tag | `v1.1.1` |
38+
| `linux.crds.image.tag` | Linux crds image tag | `v1.1.2` |
3939
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
4040
| `linux.driver.resources` | The resource request/limits for the linux secrets-store container image | `limits: 200m CPU, 200Mi; requests: 50m CPU, 100Mi` |
4141
| `linux.enabled` | Install secrets store csi driver on linux nodes | true |
@@ -64,7 +64,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
6464
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
6565
| `windows.image.repository` | Windows image repository | `k8s.gcr.io/csi-secrets-store/driver` |
6666
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
67-
| `windows.image.tag` | Windows image tag | `v1.1.1` |
67+
| `windows.image.tag` | Windows image tag | `v1.1.2` |
6868
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
6969
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |
7070
| `windows.enabled` | Install secrets store csi driver on windows nodes | false |

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,8 @@ spec:
7676
{{- end }}
7777
- "--endpoint=$(CSI_ENDPOINT)"
7878
- "--nodeid=$(KUBE_NODE_NAME)"
79-
- "--provider-volume={{ .Values.windows.providersDir }}"
79+
- "--provider-volume={{ .Values.windows.providersDir }}"
8080
- "--additional-provider-volume-paths={{ join "," .Values.windows.additionalProvidersDirs }}"
81-
{{- if and (semverCompare ">= v0.0.9-0" .Values.windows.image.tag) .Values.minimumProviderVersions }}
82-
- "--min-provider-version={{ .Values.minimumProviderVersions }}"
83-
{{- end }}
8481
{{- if and (semverCompare ">= v0.0.15-0" .Values.windows.image.tag) .Values.enableSecretRotation }}
8582
- "--enable-secret-rotation={{ .Values.enableSecretRotation }}"
8683
{{- end }}
@@ -131,12 +128,15 @@ spec:
131128
mountPath: C:\csi
132129
- name: mountpoint-dir
133130
mountPath: {{ .Values.windows.kubeletRootDir }}\pods
131+
{{- $providersDir := .Values.windows.providersDir }}
134132
- name: providers-dir
135-
mountPath: "{{ .Values.windows.providersDir }}"
133+
mountPath: "{{ $providersDir }}"
136134
{{- range $i, $path := .Values.windows.additionalProvidersDirs }}
135+
{{- if ne $providersDir $path }}
137136
- name: providers-dir-{{ $i }}
138137
mountPath: "{{ $path }}"
139138
{{- end }}
139+
{{- end }}
140140
{{- if .Values.windows.volumeMounts }}
141141
{{- toYaml .Values.windows.volumeMounts | nindent 12}}
142142
{{- end }}
@@ -177,16 +177,19 @@ spec:
177177
hostPath:
178178
path: {{ .Values.windows.kubeletRootDir }}\plugins\csi-secrets-store\
179179
type: DirectoryOrCreate
180+
{{- $providersDir := .Values.windows.providersDir }}
180181
- name: providers-dir
181182
hostPath:
182-
path: "{{ .Values.windows.providersDir }}"
183+
path: "{{ $providersDir }}"
183184
type: DirectoryOrCreate
184185
{{- range $i, $path := .Values.windows.additionalProvidersDirs }}
186+
{{- if ne $path $providersDir }}
185187
- name: providers-dir-{{ $i }}
186188
hostPath:
187189
path: "{{ $path }}"
188190
type: DirectoryOrCreate
189191
{{- end }}
192+
{{- end }}
190193
{{- if .Values.windows.volumes }}
191194
{{- toYaml .Values.windows.volumes | nindent 8}}
192195
{{- end }}

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ spec:
7878
- "--nodeid=$(KUBE_NODE_NAME)"
7979
- "--provider-volume={{ .Values.linux.providersDir }}"
8080
- "--additional-provider-volume-paths={{ join "," .Values.linux.additionalProvidersDirs }}"
81-
{{- if and (semverCompare ">= v0.0.8-0" .Values.linux.image.tag) .Values.minimumProviderVersions }}
82-
- "--min-provider-version={{ .Values.minimumProviderVersions }}"
83-
{{- end }}
8481
{{- if and (semverCompare ">= v0.0.15-0" .Values.linux.image.tag) .Values.enableSecretRotation }}
8582
- "--enable-secret-rotation={{ .Values.enableSecretRotation }}"
8683
{{- end }}
@@ -134,12 +131,15 @@ spec:
134131
- name: mountpoint-dir
135132
mountPath: {{ .Values.linux.kubeletRootDir }}/pods
136133
mountPropagation: Bidirectional
134+
{{- $providersDir := .Values.linux.providersDir }}
137135
- name: providers-dir
138-
mountPath: {{ .Values.linux.providersDir }}
136+
mountPath: {{ $providersDir }}
139137
{{- range $i, $path := .Values.linux.additionalProvidersDirs }}
138+
{{- if ne $path $providersDir }}
140139
- name: providers-dir-{{ $i }}
141140
mountPath: "{{ $path }}"
142141
{{- end }}
142+
{{- end }}
143143
{{- if .Values.linux.volumeMounts }}
144144
{{- toYaml .Values.linux.volumeMounts | nindent 12}}
145145
{{- end }}
@@ -180,15 +180,18 @@ spec:
180180
hostPath:
181181
path: {{ .Values.linux.kubeletRootDir }}/plugins/csi-secrets-store/
182182
type: DirectoryOrCreate
183+
{{- $providersDir := .Values.linux.providersDir }}
183184
- name: providers-dir
184185
hostPath:
185-
path: {{ .Values.linux.providersDir }}
186+
path: {{ $providersDir }}
186187
type: DirectoryOrCreate
187188
{{- range $i, $path := .Values.linux.additionalProvidersDirs }}
189+
{{- if ne $path $providersDir }}
188190
- name: providers-dir-{{ $i }}
189191
hostPath:
190192
path: "{{ $path }}"
191193
type: DirectoryOrCreate
194+
{{- end}}
192195
{{- end }}
193196
{{- if .Values.linux.volumes }}
194197
{{- toYaml .Values.linux.volumes | nindent 8}}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ linux:
22
enabled: true
33
image:
44
repository: k8s.gcr.io/csi-secrets-store/driver
5-
tag: v1.1.1
5+
tag: v1.1.2
66
pullPolicy: IfNotPresent
77

88
crds:
99
image:
1010
repository: k8s.gcr.io/csi-secrets-store/driver-crds
11-
tag: v1.1.1
11+
tag: v1.1.2
1212
pullPolicy: IfNotPresent
1313
annotations: {}
1414

@@ -94,7 +94,7 @@ windows:
9494
enabled: false
9595
image:
9696
repository: k8s.gcr.io/csi-secrets-store/driver
97-
tag: v1.1.1
97+
tag: v1.1.2
9898
pullPolicy: IfNotPresent
9999

100100
## Prevent the CSI driver from being scheduled on virtual-kubelet nodes

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
cpu: 100m
5151
memory: 100Mi
5252
- name: secrets-store
53-
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.1
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.2
5454
args:
5555
- "--endpoint=$(CSI_ENDPOINT)"
5656
- "--nodeid=$(KUBE_NODE_NAME)"

deploy/secrets-store-csi-driver.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
cpu: 10m
5151
memory: 20Mi
5252
- name: secrets-store
53-
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.1
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.2
5454
args:
5555
- "--endpoint=$(CSI_ENDPOINT)"
5656
- "--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.1.1
4-
appVersion: 1.1.1
3+
version: 1.1.2
4+
appVersion: 1.1.2
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
@@ -32,10 +32,10 @@ The following table lists the configurable parameters of the csi-secrets-store-p
3232
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
3333
| `linux.image.repository` | Linux image repository | `k8s.gcr.io/csi-secrets-store/driver` |
3434
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
35-
| `linux.image.tag` | Linux image tag | `v1.1.1` |
35+
| `linux.image.tag` | Linux image tag | `v1.1.2` |
3636
| `linux.crds.image.repository` | Linux crds image repository | `k8s.gcr.io/csi-secrets-store/driver-crds` |
3737
| `linux.crds.image.pullPolicy` | Linux crds image pull policy | `IfNotPresent` |
38-
| `linux.crds.image.tag` | Linux crds image tag | `v1.1.1` |
38+
| `linux.crds.image.tag` | Linux crds image tag | `v1.1.2` |
3939
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
4040
| `linux.driver.resources` | The resource request/limits for the linux secrets-store container image | `limits: 200m CPU, 200Mi; requests: 50m CPU, 100Mi` |
4141
| `linux.enabled` | Install secrets store csi driver on linux nodes | true |
@@ -64,7 +64,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
6464
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
6565
| `windows.image.repository` | Windows image repository | `k8s.gcr.io/csi-secrets-store/driver` |
6666
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
67-
| `windows.image.tag` | Windows image tag | `v1.1.1` |
67+
| `windows.image.tag` | Windows image tag | `v1.1.2` |
6868
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
6969
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |
7070
| `windows.enabled` | Install secrets store csi driver on windows nodes | false |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ linux:
22
enabled: true
33
image:
44
repository: k8s.gcr.io/csi-secrets-store/driver
5-
tag: v1.1.1
5+
tag: v1.1.2
66
pullPolicy: IfNotPresent
77

88
crds:
99
image:
1010
repository: k8s.gcr.io/csi-secrets-store/driver-crds
11-
tag: v1.1.1
11+
tag: v1.1.2
1212
pullPolicy: IfNotPresent
1313
annotations: {}
1414

@@ -94,7 +94,7 @@ windows:
9494
enabled: false
9595
image:
9696
repository: k8s.gcr.io/csi-secrets-store/driver
97-
tag: v1.1.1
97+
tag: v1.1.2
9898
pullPolicy: IfNotPresent
9999

100100
## Prevent the CSI driver from being scheduled on virtual-kubelet nodes

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
cpu: 100m
5151
memory: 100Mi
5252
- name: secrets-store
53-
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.1
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.2
5454
args:
5555
- "--endpoint=$(CSI_ENDPOINT)"
5656
- "--nodeid=$(KUBE_NODE_NAME)"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
cpu: 10m
5151
memory: 20Mi
5252
- name: secrets-store
53-
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.1
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.1.2
5454
args:
5555
- "--endpoint=$(CSI_ENDPOINT)"
5656
- "--nodeid=$(KUBE_NODE_NAME)"

0 commit comments

Comments
 (0)