Skip to content

Commit 22b631e

Browse files
committed
build: update templates for v3.1.1 release
updated required templates for v3.1.1 release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
1 parent 4935bc3 commit 22b631e

13 files changed

Lines changed: 20 additions & 20 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CPUS?=$(shell nproc --ignore=1)
2222
CPUSET?=--cpuset-cpus=0-${CPUS}
2323

2424
CSI_IMAGE_NAME=$(if $(ENV_CSI_IMAGE_NAME),$(ENV_CSI_IMAGE_NAME),quay.io/cephcsi/cephcsi)
25-
CSI_IMAGE_VERSION=$(if $(ENV_CSI_IMAGE_VERSION),$(ENV_CSI_IMAGE_VERSION),v3.1-canary)
25+
CSI_IMAGE_VERSION=$(if $(ENV_CSI_IMAGE_VERSION),$(ENV_CSI_IMAGE_VERSION),v3.1.1)
2626
CSI_IMAGE=$(CSI_IMAGE_NAME):$(CSI_IMAGE_VERSION)
2727

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

build.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ DEPLOY_TIMEOUT=10
4343
UPGRADE_VERSION=v3.0.0
4444

4545
# This var will be used by CentOS CI to build the image
46-
CSI_IMAGE_VERSION=v3.1-canary
46+
CSI_IMAGE_VERSION=v3.1.1

charts/ceph-csi-cephfs/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
apiVersion: v1
3-
appVersion: v3.1-canary
3+
appVersion: v3.1.1
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, snapshotter and attacher for Ceph cephfs"
66
name: ceph-csi-cephfs
7-
version: 3.1-canary
7+
version: 3.1.1-canary
88
keywords:
99
- ceph
1010
- cephfs

charts/ceph-csi-cephfs/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ nodeplugin:
7575
plugin:
7676
image:
7777
repository: quay.io/cephcsi/cephcsi
78-
tag: v3.1-canary
78+
tag: v3.1.1
7979
pullPolicy: IfNotPresent
8080
resources: {}
8181

charts/ceph-csi-rbd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
apiVersion: v1
3-
appVersion: v3.1-canary
3+
appVersion: v3.1.1
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, snapshotter, and attacher for Ceph RBD"
66
name: ceph-csi-rbd
7-
version: 3.1-canary
7+
version: 3.1.1-canary
88
keywords:
99
- ceph
1010
- rbd

charts/ceph-csi-rbd/values.yaml

Lines changed: 1 addition & 1 deletion
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: v3.1-canary
90+
tag: v3.1.1
9191
pullPolicy: IfNotPresent
9292
resources: {}
9393

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ build_push_images() {
8383
}
8484

8585
if [ "${TRAVIS_BRANCH}" == 'release-v3.1' ]; then
86-
export ENV_CSI_IMAGE_VERSION='v3.1-canary'
86+
export ENV_CSI_IMAGE_VERSION='v3.1.1'
8787
else
8888
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting"
8989
exit 0 # Exiting 0 so that this isn't marked as failing

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ spec:
9999
capabilities:
100100
add: ["SYS_ADMIN"]
101101
# for stable functionality replace canary with latest release version
102-
image: quay.io/cephcsi/cephcsi:v3.1-canary
102+
image: quay.io/cephcsi/cephcsi:v3.1.1
103103
args:
104104
- "--nodeid=$(NODE_ID)"
105105
- "--type=cephfs"
@@ -135,7 +135,7 @@ spec:
135135
- name: keys-tmp-dir
136136
mountPath: /tmp/csi/keys
137137
- name: liveness-prometheus
138-
image: quay.io/cephcsi/cephcsi:v3.1-canary
138+
image: quay.io/cephcsi/cephcsi:v3.1.1
139139
args:
140140
- "--type=liveness"
141141
- "--endpoint=$(CSI_ENDPOINT)"

deploy/cephfs/kubernetes/csi-cephfsplugin.yaml

Lines changed: 2 additions & 2 deletions
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:v3.1-canary
57+
image: quay.io/cephcsi/cephcsi:v3.1.1
5858
args:
5959
- "--nodeid=$(NODE_ID)"
6060
- "--type=cephfs"
@@ -104,7 +104,7 @@ spec:
104104
- name: liveness-prometheus
105105
securityContext:
106106
privileged: true
107-
image: quay.io/cephcsi/cephcsi:v3.1-canary
107+
image: quay.io/cephcsi/cephcsi:v3.1.1
108108
args:
109109
- "--type=liveness"
110110
- "--endpoint=$(CSI_ENDPOINT)"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ spec:
9999
capabilities:
100100
add: ["SYS_ADMIN"]
101101
# for stable functionality replace canary with latest release version
102-
image: quay.io/cephcsi/cephcsi:v3.1-canary
102+
image: quay.io/cephcsi/cephcsi:v3.1.1
103103
args:
104104
- "--nodeid=$(NODE_ID)"
105105
- "--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:v3.1-canary
142+
image: quay.io/cephcsi/cephcsi:v3.1.1
143143
args:
144144
- "--type=liveness"
145145
- "--endpoint=$(CSI_ENDPOINT)"

0 commit comments

Comments
 (0)