Skip to content

Commit a03675e

Browse files
committed
deploy: Template changes for release v2.1.2
Updated the templates and the required scripts to make a v2.1.2 release. Signed-off-by: Madhu Rajanna <[email protected]>
1 parent 958d2b3 commit a03675e

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
CONTAINER_CMD?=docker
1818

1919
CSI_IMAGE_NAME=$(if $(ENV_CSI_IMAGE_NAME),$(ENV_CSI_IMAGE_NAME),quay.io/cephcsi/cephcsi)
20-
CSI_IMAGE_VERSION=$(if $(ENV_CSI_IMAGE_VERSION),$(ENV_CSI_IMAGE_VERSION),v2.1-canary)
20+
CSI_IMAGE_VERSION=$(if $(ENV_CSI_IMAGE_VERSION),$(ENV_CSI_IMAGE_VERSION),v2.1.2)
2121
CSI_IMAGE=$(CSI_IMAGE_NAME):$(CSI_IMAGE_VERSION)
2222

2323
$(info cephcsi image settings: $(CSI_IMAGE_NAME) version $(CSI_IMAGE_VERSION))

charts/ceph-csi-cephfs/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
apiVersion: v1
3-
appVersion: v2.1-canary
3+
appVersion: v2.1.2
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, and attacher for Ceph cephfs"
66
name: ceph-csi-cephfs
7-
version: 2.1-canary
7+
version: 2.1.2-canary
88
keywords:
99
- ceph
1010
- cephfs

charts/ceph-csi-cephfs/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ nodeplugin:
7373
plugin:
7474
image:
7575
repository: quay.io/cephcsi/cephcsi
76-
tag: v2.1-canary
76+
tag: v2.1.2
7777
pullPolicy: IfNotPresent
7878
resources: {}
7979

charts/ceph-csi-rbd/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
apiVersion: v1
3-
appVersion: v2.1-canary
3+
appVersion: v2.1.2
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, snapshotter, and attacher for Ceph RBD"
66
name: ceph-csi-rbd
7-
version: 2.1-canary
7+
version: 2.1.2-canary
88
keywords:
99
- ceph
1010
- rbd

charts/ceph-csi-rbd/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ nodeplugin:
8787
plugin:
8888
image:
8989
repository: quay.io/cephcsi/cephcsi
90-
tag: v2.1-canary
90+
tag: v2.1.2
9191
pullPolicy: IfNotPresent
9292
resources: {}
9393

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ build_push_images() {
7979
}
8080

8181
if [ "${TRAVIS_BRANCH}" == 'release-v2.1' ]; then
82-
export ENV_CSI_IMAGE_VERSION='v2.1-canary'
82+
export ENV_CSI_IMAGE_VERSION='v2.1.2'
8383
else
8484
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting"
8585
exit 0 # Exiting 0 so that this isn't marked as failing

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ spec:
8181
capabilities:
8282
add: ["SYS_ADMIN"]
8383
# for stable functionality replace canary with latest release version
84-
image: quay.io/cephcsi/cephcsi:v2.1-canary
84+
image: quay.io/cephcsi/cephcsi:v2.1.2
8585
args:
8686
- "--nodeid=$(NODE_ID)"
8787
- "--type=cephfs"
@@ -122,7 +122,7 @@ spec:
122122
- name: keys-tmp-dir
123123
mountPath: /tmp/csi/keys
124124
- name: liveness-prometheus
125-
image: quay.io/cephcsi/cephcsi:v2.1-canary
125+
image: quay.io/cephcsi/cephcsi:v2.1.2
126126
args:
127127
- "--type=liveness"
128128
- "--endpoint=$(CSI_ENDPOINT)"

deploy/cephfs/kubernetes/csi-cephfsplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
add: ["SYS_ADMIN"]
5555
allowPrivilegeEscalation: true
5656
# for stable functionality replace canary with latest release version
57-
image: quay.io/cephcsi/cephcsi:v2.1-canary
57+
image: quay.io/cephcsi/cephcsi:v2.1.2
5858
args:
5959
- "--nodeid=$(NODE_ID)"
6060
- "--type=cephfs"
@@ -109,7 +109,7 @@ spec:
109109
- name: liveness-prometheus
110110
securityContext:
111111
privileged: true
112-
image: quay.io/cephcsi/cephcsi:v2.1-canary
112+
image: quay.io/cephcsi/cephcsi:v2.1.2
113113
args:
114114
- "--type=liveness"
115115
- "--endpoint=$(CSI_ENDPOINT)"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ spec:
101101
capabilities:
102102
add: ["SYS_ADMIN"]
103103
# for stable functionality replace canary with latest release version
104-
image: quay.io/cephcsi/cephcsi:v2.1-canary
104+
image: quay.io/cephcsi/cephcsi:v2.1.2
105105
args:
106106
- "--nodeid=$(NODE_ID)"
107107
- "--type=rbd"
@@ -139,7 +139,7 @@ spec:
139139
- name: keys-tmp-dir
140140
mountPath: /tmp/csi/keys
141141
- name: liveness-prometheus
142-
image: quay.io/cephcsi/cephcsi:v2.1-canary
142+
image: quay.io/cephcsi/cephcsi:v2.1.2
143143
args:
144144
- "--type=liveness"
145145
- "--endpoint=$(CSI_ENDPOINT)"

deploy/rbd/kubernetes/csi-rbdplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
add: ["SYS_ADMIN"]
5656
allowPrivilegeEscalation: true
5757
# for stable functionality replace canary with latest release version
58-
image: quay.io/cephcsi/cephcsi:v2.1-canary
58+
image: quay.io/cephcsi/cephcsi:v2.1.2
5959
args:
6060
- "--nodeid=$(NODE_ID)"
6161
- "--type=rbd"
@@ -111,7 +111,7 @@ spec:
111111
- name: liveness-prometheus
112112
securityContext:
113113
privileged: true
114-
image: quay.io/cephcsi/cephcsi:v2.1-canary
114+
image: quay.io/cephcsi/cephcsi:v2.1.2
115115
args:
116116
- "--type=liveness"
117117
- "--endpoint=$(CSI_ENDPOINT)"

scripts/minikube.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ teardown-rook)
142142
;;
143143
cephcsi)
144144
echo "copying the cephcsi image"
145-
copy_image_to_cluster "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.1-canary "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.1-canary
145+
copy_image_to_cluster "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.1.2 "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.1.2
146146
;;
147147
k8s-sidecar)
148148
echo "copying the kubernetes sidecar images"

0 commit comments

Comments
 (0)