Skip to content

Commit 955d247

Browse files
riya-singhal31mergify[bot]
authored andcommitted
deploy: update templates to v3.10.1
This commit updates templates to new v3.10.1 release. Signed-off-by: Riya Singhal <[email protected]>
1 parent 0308748 commit 955d247

File tree

10 files changed

+17
-15
lines changed

10 files changed

+17
-15
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ environments.
5656

5757
| Ceph CSI Version | Container Orchestrator Name | Version Tested |
5858
| -----------------| --------------------------- | -------------------|
59+
| v3.10.1 | Kubernetes | v1.26, v1.27, v1.28|
5960
| v3.10.0 | Kubernetes | v1.26, v1.27, v1.28|
6061
| v3.9.0 | Kubernetes | v1.25, v1.26, v1.27|
6162

@@ -128,6 +129,7 @@ in the Kubernetes documentation.
128129
| Ceph CSI Release/Branch | Container image name | Image Tag |
129130
| ----------------------- | ---------------------------- | --------- |
130131
| devel (Branch) | quay.io/cephcsi/cephcsi | canary |
132+
| v3.10.1 (Release) | quay.io/cephcsi/cephcsi | v3.10.1 |
131133
| v3.10.0 (Release) | quay.io/cephcsi/cephcsi | v3.10.0 |
132134
| v3.9.0 (Release) | quay.io/cephcsi/cephcsi | v3.9.0 |
133135

build.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# get proporly expanded.
1010
#
1111
# cephcsi image version
12-
CSI_IMAGE_VERSION=v3.10-canary
12+
CSI_IMAGE_VERSION=v3.10.1
1313

1414
# cephcsi upgrade version
1515
CSI_UPGRADE_VERSION=v3.9.0

charts/ceph-csi-cephfs/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ nodeplugin:
9999
plugin:
100100
image:
101101
repository: quay.io/cephcsi/cephcsi
102-
tag: v3.10.0
102+
tag: v3.10.1
103103
pullPolicy: IfNotPresent
104104
resources: {}
105105

charts/ceph-csi-rbd/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ nodeplugin:
127127
plugin:
128128
image:
129129
repository: quay.io/cephcsi/cephcsi
130-
tag: v3.10.0
130+
tag: v3.10.1
131131
pullPolicy: IfNotPresent
132132
resources: {}
133133

deploy/cephfs/kubernetes/csi-cephfsplugin-provisioner.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
- name: socket-dir
9595
mountPath: /csi
9696
- name: csi-cephfsplugin
97-
image: quay.io/cephcsi/cephcsi:v3.10-canary
97+
image: quay.io/cephcsi/cephcsi:v3.10.1
9898
args:
9999
- "--nodeid=$(NODE_ID)"
100100
- "--type=cephfs"
@@ -142,7 +142,7 @@ spec:
142142
- name: ceph-csi-encryption-kms-config
143143
mountPath: /etc/ceph-csi-encryption-kms-config/
144144
- name: liveness-prometheus
145-
image: quay.io/cephcsi/cephcsi:v3.10-canary
145+
image: quay.io/cephcsi/cephcsi:v3.10.1
146146
args:
147147
- "--type=liveness"
148148
- "--endpoint=$(CSI_ENDPOINT)"

deploy/cephfs/kubernetes/csi-cephfsplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ spec:
4848
capabilities:
4949
add: ["SYS_ADMIN"]
5050
allowPrivilegeEscalation: true
51-
image: quay.io/cephcsi/cephcsi:v3.10-canary
51+
image: quay.io/cephcsi/cephcsi:v3.10.1
5252
args:
5353
- "--nodeid=$(NODE_ID)"
5454
- "--type=cephfs"
@@ -124,7 +124,7 @@ spec:
124124
securityContext:
125125
privileged: true
126126
allowPrivilegeEscalation: true
127-
image: quay.io/cephcsi/cephcsi:v3.10-canary
127+
image: quay.io/cephcsi/cephcsi:v3.10.1
128128
args:
129129
- "--type=liveness"
130130
- "--endpoint=$(CSI_ENDPOINT)"

deploy/nfs/kubernetes/csi-nfsplugin-provisioner.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ spec:
8888
- name: socket-dir
8989
mountPath: /csi
9090
- name: csi-nfsplugin
91-
image: quay.io/cephcsi/cephcsi:v3.10-canary
91+
image: quay.io/cephcsi/cephcsi:v3.10.1
9292
args:
9393
- "--nodeid=$(NODE_ID)"
9494
- "--type=nfs"
@@ -120,7 +120,7 @@ spec:
120120
- name: keys-tmp-dir
121121
mountPath: /tmp/csi/keys
122122
- name: liveness-prometheus
123-
image: quay.io/cephcsi/cephcsi:v3.10-canary
123+
image: quay.io/cephcsi/cephcsi:v3.10.1
124124
args:
125125
- "--type=liveness"
126126
- "--endpoint=$(CSI_ENDPOINT)"

deploy/nfs/kubernetes/csi-nfsplugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ spec:
4848
capabilities:
4949
add: ["SYS_ADMIN"]
5050
allowPrivilegeEscalation: true
51-
image: quay.io/cephcsi/cephcsi:v3.10.0
51+
image: quay.io/cephcsi/cephcsi:v3.10.1
5252
args:
5353
- "--nodeid=$(NODE_ID)"
5454
- "--type=nfs"

deploy/rbd/kubernetes/csi-rbdplugin-provisioner.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ spec:
116116
- name: socket-dir
117117
mountPath: /csi
118118
- name: csi-rbdplugin
119-
image: quay.io/cephcsi/cephcsi:v3.10-canary
119+
image: quay.io/cephcsi/cephcsi:v3.10.1
120120
args:
121121
- "--nodeid=$(NODE_ID)"
122122
- "--type=rbd"
@@ -172,7 +172,7 @@ spec:
172172
mountPath: /run/secrets/tokens
173173
readOnly: true
174174
- name: csi-rbdplugin-controller
175-
image: quay.io/cephcsi/cephcsi:v3.10-canary
175+
image: quay.io/cephcsi/cephcsi:v3.10.1
176176
args:
177177
- "--type=controller"
178178
- "--v=5"
@@ -193,7 +193,7 @@ spec:
193193
- name: ceph-config
194194
mountPath: /etc/ceph/
195195
- name: liveness-prometheus
196-
image: quay.io/cephcsi/cephcsi:v3.10-canary
196+
image: quay.io/cephcsi/cephcsi:v3.10.1
197197
args:
198198
- "--type=liveness"
199199
- "--endpoint=$(CSI_ENDPOINT)"

deploy/rbd/kubernetes/csi-rbdplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
capabilities:
5151
add: ["SYS_ADMIN"]
5252
allowPrivilegeEscalation: true
53-
image: quay.io/cephcsi/cephcsi:v3.10-canary
53+
image: quay.io/cephcsi/cephcsi:v3.10.1
5454
args:
5555
- "--nodeid=$(NODE_ID)"
5656
- "--pluginpath=/var/lib/kubelet/plugins"
@@ -134,7 +134,7 @@ spec:
134134
securityContext:
135135
privileged: true
136136
allowPrivilegeEscalation: true
137-
image: quay.io/cephcsi/cephcsi:v3.10-canary
137+
image: quay.io/cephcsi/cephcsi:v3.10.1
138138
args:
139139
- "--type=liveness"
140140
- "--endpoint=$(CSI_ENDPOINT)"

0 commit comments

Comments
 (0)