Skip to content

Commit 4af9965

Browse files
committed
release: update manifest and helm charts for v1.0.0-rc.0
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
1 parent ce94947 commit 4af9965

12 files changed

+40
-36
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: 0.3.0
4-
appVersion: 0.3.0
3+
version: 1.0.0-rc.0
4+
appVersion: 1.0.0-rc.0
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
4747
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
4848
| `linux.image.repository` | Linux image repository | `k8s.gcr.io/csi-secrets-store/driver` |
4949
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
50-
| `linux.image.tag` | Linux image tag | `v0.3.0` |
50+
| `linux.image.tag` | Linux image tag | `v1.0.0-rc.0` |
5151
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
5252
| `linux.driver.resources` | The resource request/limits for the linux secrets-store container image | `limits: 200m CPU, 200Mi; requests: 50m CPU, 100Mi` |
5353
| `linux.enabled` | Install secrets store csi driver on linux nodes | true |
@@ -76,7 +76,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
7676
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
7777
| `windows.image.repository` | Windows image repository | `k8s.gcr.io/csi-secrets-store/driver` |
7878
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
79-
| `windows.image.tag` | Windows image tag | `v0.3.0` |
79+
| `windows.image.tag` | Windows image tag | `v1.0.0-rc.0` |
8080
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
8181
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |
8282
| `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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
template:
1919
metadata:
2020
annotations:
21-
kubectl.kubernetes.io/default-logs-container: secrets-store
21+
kubectl.kubernetes.io/default-container: secrets-store
2222
{{- if .Values.windows.podAnnotations }}
2323
{{ toYaml .Values.windows.podAnnotations | indent 8 }}
2424
{{- end }}
@@ -47,7 +47,8 @@ spec:
4747
- /csi-node-driver-registrar.exe
4848
- --kubelet-registration-path={{ .Values.windows.kubeletRootDir }}\plugins\csi-secrets-store\csi.sock
4949
- --mode=kubelet-registration-probe
50-
initialDelaySeconds: 3
50+
initialDelaySeconds: 30
51+
timeoutSeconds: 15
5152
env:
5253
- name: KUBE_NODE_NAME
5354
valueFrom:

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
template:
1919
metadata:
2020
annotations:
21-
kubectl.kubernetes.io/default-logs-container: secrets-store
21+
kubectl.kubernetes.io/default-container: secrets-store
2222
{{- if .Values.linux.podAnnotations }}
2323
{{ toYaml .Values.linux.podAnnotations | indent 8 }}
2424
{{- end }}
@@ -47,7 +47,8 @@ spec:
4747
- /csi-node-driver-registrar
4848
- --kubelet-registration-path={{ .Values.linux.kubeletRootDir }}/plugins/csi-secrets-store/csi.sock
4949
- --mode=kubelet-registration-probe
50-
initialDelaySeconds: 3
50+
initialDelaySeconds: 30
51+
timeoutSeconds: 15
5152
env:
5253
- name: KUBE_NODE_NAME
5354
valueFrom:

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

Lines changed: 8 additions & 8 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: v0.3.0
5+
tag: v1.0.0-rc.0
66
pullPolicy: IfNotPresent
77

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

@@ -93,7 +93,7 @@ windows:
9393
enabled: false
9494
image:
9595
repository: k8s.gcr.io/csi-secrets-store/driver
96-
tag: v0.3.0
96+
tag: v1.0.0-rc.0
9797
pullPolicy: IfNotPresent
9898

9999
## Prevent the CSI driver from being scheduled on virtual-kubelet nodes
@@ -113,7 +113,7 @@ windows:
113113
cpu: 400m
114114
memory: 400Mi
115115
requests:
116-
cpu: 50m
116+
cpu: 100m
117117
memory: 100Mi
118118

119119
registrarImage:
@@ -127,8 +127,8 @@ windows:
127127
cpu: 200m
128128
memory: 200Mi
129129
requests:
130-
cpu: 10m
131-
memory: 20Mi
130+
cpu: 100m
131+
memory: 100Mi
132132
logVerbosity: 5
133133

134134
livenessProbeImage:
@@ -142,8 +142,8 @@ windows:
142142
cpu: 200m
143143
memory: 200Mi
144144
requests:
145-
cpu: 10m
146-
memory: 20Mi
145+
cpu: 100m
146+
memory: 100Mi
147147

148148
updateStrategy:
149149
type: RollingUpdate

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
labels:
1313
app: csi-secrets-store
1414
annotations:
15-
kubectl.kubernetes.io/default-logs-container: secrets-store
15+
kubectl.kubernetes.io/default-container: secrets-store
1616
spec:
1717
serviceAccountName: secrets-store-csi-driver
1818
containers:
@@ -28,7 +28,8 @@ spec:
2828
- /csi-node-driver-registrar.exe
2929
- --kubelet-registration-path=C:\var\lib\kubelet\plugins\csi-secrets-store\csi.sock
3030
- --mode=kubelet-registration-probe
31-
initialDelaySeconds: 3
31+
initialDelaySeconds: 30
32+
timeoutSeconds: 15
3233
env:
3334
- name: KUBE_NODE_NAME
3435
valueFrom:
@@ -46,10 +47,10 @@ spec:
4647
cpu: 200m
4748
memory: 200Mi
4849
requests:
49-
cpu: 10m
50-
memory: 20Mi
50+
cpu: 100m
51+
memory: 100Mi
5152
- name: secrets-store
52-
image: k8s.gcr.io/csi-secrets-store/driver:v0.3.0
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.0.0-rc.0
5354
args:
5455
- "--endpoint=$(CSI_ENDPOINT)"
5556
- "--nodeid=$(KUBE_NODE_NAME)"
@@ -89,7 +90,7 @@ spec:
8990
cpu: 400m
9091
memory: 400Mi
9192
requests:
92-
cpu: 50m
93+
cpu: 100m
9394
memory: 100Mi
9495
volumeMounts:
9596
- name: plugin-dir
@@ -114,8 +115,8 @@ spec:
114115
cpu: 200m
115116
memory: 200Mi
116117
requests:
117-
cpu: 10m
118-
memory: 20Mi
118+
cpu: 100m
119+
memory: 100Mi
119120
volumes:
120121
- name: mountpoint-dir
121122
hostPath:

deploy/secrets-store-csi-driver.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ spec:
1212
labels:
1313
app: csi-secrets-store
1414
annotations:
15-
kubectl.kubernetes.io/default-logs-container: secrets-store
15+
kubectl.kubernetes.io/default-container: secrets-store
1616
spec:
1717
serviceAccountName: secrets-store-csi-driver
1818
containers:
@@ -28,7 +28,8 @@ spec:
2828
- /csi-node-driver-registrar
2929
- --kubelet-registration-path=/var/lib/kubelet/plugins/csi-secrets-store/csi.sock
3030
- --mode=kubelet-registration-probe
31-
initialDelaySeconds: 3
31+
initialDelaySeconds: 30
32+
timeoutSeconds: 15
3233
env:
3334
- name: KUBE_NODE_NAME
3435
valueFrom:
@@ -49,7 +50,7 @@ spec:
4950
cpu: 10m
5051
memory: 20Mi
5152
- name: secrets-store
52-
image: k8s.gcr.io/csi-secrets-store/driver:v0.3.0
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.0.0-rc.0
5354
args:
5455
- "--endpoint=$(CSI_ENDPOINT)"
5556
- "--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: 0.3.0
4-
appVersion: 0.3.0
3+
version: 1.0.0-rc.0
4+
appVersion: 1.0.0-rc.0
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
4747
| `fullnameOverride` | String to fully override secrets-store-csi-driver.fullname template with a string | `""` |
4848
| `linux.image.repository` | Linux image repository | `k8s.gcr.io/csi-secrets-store/driver` |
4949
| `linux.image.pullPolicy` | Linux image pull policy | `IfNotPresent` |
50-
| `linux.image.tag` | Linux image tag | `v0.3.0` |
50+
| `linux.image.tag` | Linux image tag | `v1.0.0-rc.0` |
5151
| `linux.affinity` | Linux affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
5252
| `linux.driver.resources` | The resource request/limits for the linux secrets-store container image | `limits: 200m CPU, 200Mi; requests: 50m CPU, 100Mi` |
5353
| `linux.enabled` | Install secrets store csi driver on linux nodes | true |
@@ -76,7 +76,7 @@ The following table lists the configurable parameters of the csi-secrets-store-p
7676
| `linux.updateStrategy` | Configure a custom update strategy for the daemonset on linux nodes | `RollingUpdate with 1 maxUnavailable` |
7777
| `windows.image.repository` | Windows image repository | `k8s.gcr.io/csi-secrets-store/driver` |
7878
| `windows.image.pullPolicy` | Windows image pull policy | `IfNotPresent` |
79-
| `windows.image.tag` | Windows image tag | `v0.3.0` |
79+
| `windows.image.tag` | Windows image tag | `v1.0.0-rc.0` |
8080
| `windows.affinity` | Windows affinity | `key: type; operator: NotIn; values: [virtual-kubelet]` |
8181
| `windows.driver.resources` | The resource request/limits for the windows secrets-store container image | `limits: 400m CPU, 400Mi; requests: 50m CPU, 100Mi` |
8282
| `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: v0.3.0
5+
tag: v1.0.0-rc.0
66
pullPolicy: IfNotPresent
77

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

@@ -93,7 +93,7 @@ windows:
9393
enabled: false
9494
image:
9595
repository: k8s.gcr.io/csi-secrets-store/driver
96-
tag: v0.3.0
96+
tag: v1.0.0-rc.0
9797
pullPolicy: IfNotPresent
9898

9999
## 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:v0.3.0
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.0.0-rc.0
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:v0.3.0
53+
image: k8s.gcr.io/csi-secrets-store/driver:v1.0.0-rc.0
5454
args:
5555
- "--endpoint=$(CSI_ENDPOINT)"
5656
- "--nodeid=$(KUBE_NODE_NAME)"

0 commit comments

Comments
 (0)