Skip to content

Commit e58d537

Browse files
Madhu-1humblec
authored andcommitted
prepare release v2.0.0
Signed-off-by: Madhu Rajanna <[email protected]>
1 parent 520ceb6 commit e58d537

13 files changed

+20
-18
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ language: go
1515
branches:
1616
only:
1717
- master
18+
- release-v2.0
1819

1920
go: 1.12.x
2021

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),canary)
20+
CSI_IMAGE_VERSION=$(if $(ENV_CSI_IMAGE_VERSION),$(ENV_CSI_IMAGE_VERSION),v2.0.0)
2121
CSI_IMAGE=$(CSI_IMAGE_NAME):$(CSI_IMAGE_VERSION)
2222

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

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ in the Kubernetes documentation.
9191
| Ceph CSI Release/Branch | Container image name | Image Tag |
9292
| ----------------------- | ---------------------------- | --------- |
9393
| Master (Branch) | quay.io/cephcsi/cephcsi | canary |
94+
| v2.0.0 (Release) | quay.io/cephcsi/cephcsi | v2.0.0 |
9495
| v1.2.2 (Release) | quay.io/cephcsi/cephcsi | v1.2.2 |
9596
| v1.2.1 (Release) | quay.io/cephcsi/cephcsi | v1.2.1 |
9697
| v1.2.0 (Release) | quay.io/cephcsi/cephcsi | v1.2.0 |

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: canary
3+
appVersion: v2.0.0
44
description: "Container Storage Interface (CSI) driver,
55
provisioner, and attacher for Ceph cephfs"
66
name: ceph-csi-cephfs
7-
version: 1.3.0-canary
7+
version: 2.0.0-canary
88
keywords:
99
- ceph
1010
- cephfs

charts/ceph-csi-cephfs/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ nodeplugin:
104104
plugin:
105105
image:
106106
repository: quay.io/cephcsi/cephcsi
107-
tag: canary
107+
tag: v2.0.0
108108
pullPolicy: IfNotPresent
109109
resources: {}
110110

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: canary
3+
appVersion: v2.0.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: 2.0.0-canary
88
keywords:
99
- ceph
1010
- rbd

charts/ceph-csi-rbd/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ nodeplugin:
104104
plugin:
105105
image:
106106
repository: quay.io/cephcsi/cephcsi
107-
tag: canary
107+
tag: 2.0.0
108108
pullPolicy: IfNotPresent
109109
resources: {}
110110

deploy.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ build_push_images() {
7070
done
7171
}
7272

73-
if [ "${TRAVIS_BRANCH}" == 'master' ]; then
74-
export ENV_CSI_IMAGE_VERSION='canary'
73+
if [ "${TRAVIS_BRANCH}" == 'release-v2.0' ]; then
74+
export ENV_CSI_IMAGE_VERSION='v2.0.0'
7575
else
7676
echo "!!! Branch ${TRAVIS_BRANCH} is not a deployable branch; exiting"
7777
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
@@ -84,7 +84,7 @@ spec:
8484
capabilities:
8585
add: ["SYS_ADMIN"]
8686
# for stable functionality replace canary with latest release version
87-
image: quay.io/cephcsi/cephcsi:canary
87+
image: quay.io/cephcsi/cephcsi:v2.0.0
8888
args:
8989
- "--nodeid=$(NODE_ID)"
9090
- "--type=cephfs"
@@ -128,7 +128,7 @@ spec:
128128
- name: keys-tmp-dir
129129
mountPath: /tmp/csi/keys
130130
- name: liveness-prometheus
131-
image: quay.io/cephcsi/cephcsi:canary
131+
image: quay.io/cephcsi/cephcsi:v2.0.0
132132
args:
133133
- "--type=liveness"
134134
- "--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:canary
57+
image: quay.io/cephcsi/cephcsi:v2.0.0
5858
args:
5959
- "--nodeid=$(NODE_ID)"
6060
- "--type=cephfs"
@@ -108,7 +108,7 @@ spec:
108108
- name: liveness-prometheus
109109
securityContext:
110110
privileged: true
111-
image: quay.io/cephcsi/cephcsi:canary
111+
image: quay.io/cephcsi/cephcsi:v2.0.0
112112
args:
113113
- "--type=liveness"
114114
- "--endpoint=$(CSI_ENDPOINT)"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ spec:
104104
capabilities:
105105
add: ["SYS_ADMIN"]
106106
# for stable functionality replace canary with latest release version
107-
image: quay.io/cephcsi/cephcsi:canary
107+
image: quay.io/cephcsi/cephcsi:v2.0.0
108108
args:
109109
- "--nodeid=$(NODE_ID)"
110110
- "--type=rbd"
@@ -143,7 +143,7 @@ spec:
143143
- name: keys-tmp-dir
144144
mountPath: /tmp/csi/keys
145145
- name: liveness-prometheus
146-
image: quay.io/cephcsi/cephcsi:canary
146+
image: quay.io/cephcsi/cephcsi:v2.0.0
147147
args:
148148
- "--type=liveness"
149149
- "--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:canary
58+
image: quay.io/cephcsi/cephcsi:v2.0.0
5959
args:
6060
- "--nodeid=$(NODE_ID)"
6161
- "--type=rbd"
@@ -105,7 +105,7 @@ spec:
105105
- name: liveness-prometheus
106106
securityContext:
107107
privileged: true
108-
image: quay.io/cephcsi/cephcsi:canary
108+
image: quay.io/cephcsi/cephcsi:v2.0.0
109109
args:
110110
- "--type=liveness"
111111
- "--endpoint=$(CSI_ENDPOINT)"

scripts/minikube.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ teardown-rook)
116116
;;
117117
cephcsi)
118118
echo "copying the cephcsi image"
119-
copy_image_to_cluster "${CEPHCSI_IMAGE_REPO}"/cephcsi:canary "${CEPHCSI_IMAGE_REPO}"/cephcsi:canary
119+
copy_image_to_cluster "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.0.0 "${CEPHCSI_IMAGE_REPO}"/cephcsi:v2.0.0
120120
;;
121121
k8s-sidecar)
122122
echo "copying the kubernetes sidecar images"

0 commit comments

Comments
 (0)