Skip to content

Commit 8122750

Browse files
Madhu-1humblec
authored andcommitted
build: update required files for release-v3.3
updated the required templates and upgrade document for release 3.3 Signed-off-by: Madhu Rajanna <[email protected]>
1 parent eea5284 commit 8122750

13 files changed

Lines changed: 36 additions & 29 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
language: go
1616
branches:
1717
only:
18-
- devel
18+
- release-v3.3
1919
# Only run the deploy stage on push (not pull_request) events.
2020
stages:
2121
- name: deploy

build.env

Lines changed: 1 addition & 1 deletion
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=canary
12+
CSI_IMAGE_VERSION=v3.3.0
1313

1414
# Ceph version to use
1515
BASE_IMAGE=docker.io/ceph/ceph:v15

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: canary
3+
appVersion: v3.3.0
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, snapshotter and attacher for Ceph cephfs"
66
name: ceph-csi-cephfs
7-
version: 1.3.0-canary
7+
version: 3.3.0-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
@@ -84,7 +84,7 @@ nodeplugin:
8484
plugin:
8585
image:
8686
repository: quay.io/cephcsi/cephcsi
87-
tag: canary
87+
tag: v3.3.0
8888
pullPolicy: IfNotPresent
8989
resources: {}
9090

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: canary
3+
appVersion: v3.3.0
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, snapshotter, and attacher for Ceph RBD"
66
name: ceph-csi-rbd
7-
version: 1.3.0-canary
7+
version: 3.3.0-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
@@ -95,7 +95,7 @@ nodeplugin:
9595
plugin:
9696
image:
9797
repository: quay.io/cephcsi/cephcsi
98-
tag: canary
98+
tag: v3.3.0
9999
pullPolicy: IfNotPresent
100100
resources: {}
101101

deploy.sh

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ spec:
111111
capabilities:
112112
add: ["SYS_ADMIN"]
113113
# for stable functionality replace canary with latest release version
114-
image: quay.io/cephcsi/cephcsi:canary
114+
image: quay.io/cephcsi/cephcsi:v3.3.0
115115
args:
116116
- "--nodeid=$(NODE_ID)"
117117
- "--type=cephfs"
@@ -147,7 +147,7 @@ spec:
147147
- name: keys-tmp-dir
148148
mountPath: /tmp/csi/keys
149149
- name: liveness-prometheus
150-
image: quay.io/cephcsi/cephcsi:canary
150+
image: quay.io/cephcsi/cephcsi:v3.3.0
151151
args:
152152
- "--type=liveness"
153153
- "--endpoint=$(CSI_ENDPOINT)"

deploy/cephfs/kubernetes/csi-cephfsplugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
add: ["SYS_ADMIN"]
4848
allowPrivilegeEscalation: true
4949
# for stable functionality replace canary with latest release version
50-
image: quay.io/cephcsi/cephcsi:canary
50+
image: quay.io/cephcsi/cephcsi:v3.3.0
5151
args:
5252
- "--nodeid=$(NODE_ID)"
5353
- "--type=cephfs"
@@ -97,7 +97,7 @@ spec:
9797
- name: liveness-prometheus
9898
securityContext:
9999
privileged: true
100-
image: quay.io/cephcsi/cephcsi:canary
100+
image: quay.io/cephcsi/cephcsi:v3.3.0
101101
args:
102102
- "--type=liveness"
103103
- "--endpoint=$(CSI_ENDPOINT)"

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ spec:
114114
capabilities:
115115
add: ["SYS_ADMIN"]
116116
# for stable functionality replace canary with latest release version
117-
image: quay.io/cephcsi/cephcsi:canary
117+
image: quay.io/cephcsi/cephcsi:v3.3.0
118118
args:
119119
- "--nodeid=$(NODE_ID)"
120120
- "--type=rbd"
@@ -165,7 +165,7 @@ spec:
165165
capabilities:
166166
add: ["SYS_ADMIN"]
167167
# for stable functionality replace canary with latest release version
168-
image: quay.io/cephcsi/cephcsi:canary
168+
image: quay.io/cephcsi/cephcsi:v3.3.0
169169
args:
170170
- "--type=controller"
171171
- "--v=5"
@@ -183,7 +183,7 @@ spec:
183183
- name: keys-tmp-dir
184184
mountPath: /tmp/csi/keys
185185
- name: liveness-prometheus
186-
image: quay.io/cephcsi/cephcsi:canary
186+
image: quay.io/cephcsi/cephcsi:v3.3.0
187187
args:
188188
- "--type=liveness"
189189
- "--endpoint=$(CSI_ENDPOINT)"

0 commit comments

Comments
 (0)