mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
ci: update e2e ceph cluster version to 14.2.10
Rook version is currently 1.1.7 in our e2e deployment which brings 14.2.4 version of ceph cluster. To support cephfs snapshot e2e, we need latest version of Ceph Cluster in E2E. Rook 1.2.7 is good enough which on patching bring up ceph 14.2.10 cluster. Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
parent
cf98442ef6
commit
9cb9020e2e
@ -1,14 +1,34 @@
|
|||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
ROOK_VERSION=${ROOK_VERSION:-"v1.1.7"}
|
ROOK_VERSION=${ROOK_VERSION:-"v1.2.7"}
|
||||||
ROOK_DEPLOY_TIMEOUT=${ROOK_DEPLOY_TIMEOUT:-300}
|
ROOK_DEPLOY_TIMEOUT=${ROOK_DEPLOY_TIMEOUT:-300}
|
||||||
ROOK_URL="https://raw.githubusercontent.com/rook/rook/${ROOK_VERSION}/cluster/examples/kubernetes/ceph"
|
ROOK_URL="https://raw.githubusercontent.com/rook/rook/${ROOK_VERSION}/cluster/examples/kubernetes/ceph"
|
||||||
ROOK_BLOCK_POOL_NAME=${ROOK_BLOCK_POOL_NAME:-"newrbdpool"}
|
ROOK_BLOCK_POOL_NAME=${ROOK_BLOCK_POOL_NAME:-"newrbdpool"}
|
||||||
|
ROOK_CEPH_CLUSTER_VERSION="v14.2.10"
|
||||||
|
|
||||||
|
rook_version() {
|
||||||
|
echo "${ROOK_VERSION#?v}" | cut -d'.' -f"${1}"
|
||||||
|
}
|
||||||
|
|
||||||
function deploy_rook() {
|
function deploy_rook() {
|
||||||
kubectl create -f "${ROOK_URL}/common.yaml"
|
kubectl create -f "${ROOK_URL}/common.yaml"
|
||||||
kubectl create -f "${ROOK_URL}/operator.yaml"
|
kubectl create -f "${ROOK_URL}/operator.yaml"
|
||||||
|
# find out the rook version to decide on the ceph cluster image to be used
|
||||||
|
ROOK_MAJOR=$(rook_version 1)
|
||||||
|
ROOK_MINOR=$(rook_version 2)
|
||||||
|
if { [ "${ROOK_MAJOR}" -eq 1 ] && [ "${ROOK_MINOR}" -le 2 ]; }; then
|
||||||
|
ROOK_CEPH_CLUSTER_VERSION_IMAGE_PATH="image: ceph/ceph:${ROOK_CEPH_CLUSTER_VERSION}"
|
||||||
|
# upgrade ceph cluster version to 14.2.10 to support CephFS snapshot functionalities.
|
||||||
|
TEMP_DIR="$(mktemp -d)"
|
||||||
|
curl -o "${TEMP_DIR}"/cluster-test.yaml "${ROOK_URL}/cluster-test.yaml"
|
||||||
|
sed -i "s|image.*|${ROOK_CEPH_CLUSTER_VERSION_IMAGE_PATH}|g" cluster-test.yaml
|
||||||
|
cat cluster-test.yaml
|
||||||
|
kubectl create -f "${TEMP_DIR}/cluster-test.yaml"
|
||||||
|
rm -rf "${TEMP_DIR}"
|
||||||
|
else
|
||||||
kubectl create -f "${ROOK_URL}/cluster-test.yaml"
|
kubectl create -f "${ROOK_URL}/cluster-test.yaml"
|
||||||
|
fi
|
||||||
|
|
||||||
kubectl create -f "${ROOK_URL}/toolbox.yaml"
|
kubectl create -f "${ROOK_URL}/toolbox.yaml"
|
||||||
kubectl create -f "${ROOK_URL}/filesystem-test.yaml"
|
kubectl create -f "${ROOK_URL}/filesystem-test.yaml"
|
||||||
kubectl create -f "${ROOK_URL}/pool-test.yaml"
|
kubectl create -f "${ROOK_URL}/pool-test.yaml"
|
||||||
|
Loading…
Reference in New Issue
Block a user