2020-08-26 14:42:01 +00:00
|
|
|
def cico_retries = 16
|
|
|
|
def cico_retry_interval = 60
|
2024-05-29 09:01:19 +00:00
|
|
|
def duffy_pool = 'virt-ec2-t2-centos-9s-x86_64'
|
2020-08-26 14:42:01 +00:00
|
|
|
def ci_git_repo = 'https://github.com/ceph/ceph-csi'
|
|
|
|
def ci_git_branch = 'ci/centos'
|
|
|
|
def git_repo = 'https://github.com/ceph/ceph-csi'
|
2021-02-25 08:23:57 +00:00
|
|
|
def ref = "devel"
|
|
|
|
def git_since = 'devel'
|
2020-08-26 14:42:01 +00:00
|
|
|
def skip_e2e = 0
|
|
|
|
def doc_change = 0
|
|
|
|
def k8s_release = 'latest'
|
|
|
|
def namespace = 'k8s-e2e-storage-' + UUID.randomUUID().toString().split('-')[-1]
|
2023-03-17 16:52:29 +00:00
|
|
|
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
2021-05-11 13:05:05 +00:00
|
|
|
def failure = null
|
2020-08-26 14:42:01 +00:00
|
|
|
|
|
|
|
def ssh(cmd) {
|
|
|
|
sh "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} '${cmd}'"
|
|
|
|
}
|
|
|
|
|
2021-04-27 10:45:48 +00:00
|
|
|
def podman_login(registry, username, passwd) {
|
2021-07-15 08:29:27 +00:00
|
|
|
ssh "podman login --authfile=~/.podman-auth.json --username='${username}' --password='${passwd}' ${registry}"
|
2021-04-27 10:45:48 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 17:18:15 +00:00
|
|
|
def create_duffy_config() {
|
|
|
|
writeFile(
|
|
|
|
file: '/home/jenkins/.config/duffy',
|
|
|
|
text: """client:
|
|
|
|
| url: https://duffy.ci.centos.org/api/v1
|
|
|
|
| auth:
|
|
|
|
| name: ceph-csi
|
|
|
|
| key: ${env.CICO_API_KEY}
|
|
|
|
|""".stripMargin()
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-27 10:45:48 +00:00
|
|
|
// podman_pull pulls image from the source (CI internal) registry, and tags it
|
|
|
|
// as unqualified image name and into the destination registry. This prevents
|
|
|
|
// pulling from the destination registry.
|
|
|
|
//
|
|
|
|
// Images need to be pre-pushed into the source registry, though.
|
|
|
|
def podman_pull(source, destination, image) {
|
2024-01-31 09:47:11 +00:00
|
|
|
ssh "podman pull --authfile=~/.podman-auth.json ${source}/${image} && podman tag ${source}/${image} ${image} ${destination}/${image}"
|
2021-04-27 10:45:48 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 14:42:01 +00:00
|
|
|
node('cico-workspace') {
|
|
|
|
stage('checkout ci repository') {
|
|
|
|
git url: "${ci_git_repo}",
|
|
|
|
branch: "${ci_git_branch}",
|
|
|
|
changelog: false
|
|
|
|
}
|
|
|
|
|
|
|
|
// "github-api-token" is a secret text credential configured in Jenkins
|
|
|
|
withCredentials([string(credentialsId: 'github-api-token', variable: 'GITHUB_API_TOKEN')]) {
|
|
|
|
stage('skip ci/skip/e2e label') {
|
|
|
|
if (params.ghprbPullId == null) {
|
|
|
|
skip_e2e = 1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
skip_e2e = sh(
|
|
|
|
script: "./scripts/get_github_labels.py --id=${ghprbPullId} --has-label=ci/skip/e2e",
|
|
|
|
returnStatus: true)
|
|
|
|
}
|
|
|
|
|
|
|
|
stage("detect k8s-${k8s_version} patch release") {
|
|
|
|
k8s_release = sh(
|
|
|
|
script: "./scripts/get_patch_release.py --version=${k8s_version}",
|
|
|
|
returnStdout: true).trim()
|
|
|
|
echo "detected Kubernetes patch release: ${k8s_release}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if skip_e2e returned 0, do not run full tests
|
|
|
|
if (skip_e2e == 0) {
|
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('checkout PR') {
|
|
|
|
if (params.ghprbPullId != null) {
|
2021-11-22 07:28:58 +00:00
|
|
|
ref = "pull/${ghprbPullId}/merge"
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
if (params.ghprbTargetBranch != null) {
|
|
|
|
git_since = "${ghprbTargetBranch}"
|
|
|
|
}
|
|
|
|
|
|
|
|
sh "git clone --depth=1 --branch='${git_since}' '${git_repo}' ~/build/ceph-csi"
|
2021-04-07 16:09:56 +00:00
|
|
|
if (ref != git_since) {
|
|
|
|
sh "cd ~/build/ceph-csi && git fetch origin ${ref} && git checkout -b ${ref} FETCH_HEAD"
|
|
|
|
}
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('check doc-only change') {
|
|
|
|
doc_change = sh(
|
|
|
|
script: "cd ~/build/ceph-csi && \${OLDPWD}/scripts/skip-doc-change.sh origin/${git_since}",
|
|
|
|
returnStatus: true)
|
|
|
|
}
|
|
|
|
// if doc_change (return value of skip-doc-change.sh is 1, do not run the other stages
|
2021-04-09 09:29:28 +00:00
|
|
|
if (doc_change == 1 && ref != git_since) {
|
2020-08-26 14:42:01 +00:00
|
|
|
currentBuild.result = 'SUCCESS'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('reserve bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
create_duffy_config()
|
|
|
|
|
2020-08-26 14:42:01 +00:00
|
|
|
def firstAttempt = true
|
|
|
|
retry(30) {
|
|
|
|
if (!firstAttempt) {
|
|
|
|
sleep(time: 5, unit: "MINUTES")
|
|
|
|
}
|
|
|
|
firstAttempt = false
|
2022-12-08 17:18:15 +00:00
|
|
|
def cmd = sh(
|
|
|
|
script: "duffy client request-session pool=${duffy_pool},quantity=1",
|
2020-08-26 14:42:01 +00:00
|
|
|
returnStdout: true
|
2022-12-08 17:18:15 +00:00
|
|
|
)
|
|
|
|
def duffy = new groovy.json.JsonSlurper().parseText(cmd)
|
|
|
|
env.CICO_NODE = "${duffy.session.nodes[0].hostname}"
|
|
|
|
env.CICO_SSID = "${duffy.session.id}"
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
stage('prepare bare-metal machine') {
|
|
|
|
if (params.ghprbPullId != null) {
|
|
|
|
ref = "pull/${ghprbPullId}/head"
|
|
|
|
}
|
2021-05-11 12:24:52 +00:00
|
|
|
sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh podman2minikube.sh ./run-k8s-external-storage-e2e.sh ./system-status.sh root@${CICO_NODE}:'
|
2020-08-26 14:42:01 +00:00
|
|
|
ssh "./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${git_repo} --ref=${ref}"
|
|
|
|
}
|
2021-04-27 10:45:48 +00:00
|
|
|
stage('pull base container images') {
|
|
|
|
def base_image = sh(
|
|
|
|
script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} \'source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${BASE_IMAGE}\'',
|
|
|
|
returnStdout: true
|
|
|
|
).trim()
|
2022-03-30 05:27:56 +00:00
|
|
|
def q_io_regex = ~"^quay.io/"
|
2021-04-27 10:45:48 +00:00
|
|
|
|
|
|
|
withCredentials([usernamePassword(credentialsId: 'container-registry-auth', usernameVariable: 'CREDS_USER', passwordVariable: 'CREDS_PASSWD')]) {
|
2021-07-14 13:24:01 +00:00
|
|
|
podman_login(ci_registry, '$CREDS_USER', '$CREDS_PASSWD')
|
2021-04-27 10:45:48 +00:00
|
|
|
}
|
|
|
|
|
2024-07-29 07:47:25 +00:00
|
|
|
// base_image is like quay.io/ceph/ceph:v19, strip "quay.io/"
|
2022-03-30 05:27:56 +00:00
|
|
|
podman_pull(ci_registry, "quay.io", "${base_image}" - q_io_regex)
|
2021-04-27 10:45:48 +00:00
|
|
|
// cephcsi:devel is used with 'make containerized-build'
|
|
|
|
podman_pull(ci_registry, ci_registry, "ceph-csi:devel")
|
|
|
|
}
|
2020-08-26 14:42:01 +00:00
|
|
|
stage('build artifacts') {
|
|
|
|
// build container image
|
|
|
|
ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && make image-cephcsi GOARCH=amd64 CONTAINER_CMD=podman'
|
|
|
|
}
|
|
|
|
stage("deploy k8s-${k8s_version} and rook") {
|
2021-04-27 10:45:48 +00:00
|
|
|
def rook_version = sh(
|
|
|
|
script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} \'source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${ROOK_VERSION}\'',
|
|
|
|
returnStdout: true
|
|
|
|
).trim()
|
|
|
|
|
|
|
|
if (rook_version != '') {
|
|
|
|
// single-node-k8s.sh pushes the image into minikube
|
|
|
|
podman_pull(ci_registry, "docker.io", "rook/ceph:${rook_version}")
|
|
|
|
}
|
|
|
|
|
|
|
|
def rook_ceph_cluster_image = sh(
|
|
|
|
script: 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@${CICO_NODE} \'source /opt/build/go/src/github.com/ceph/ceph-csi/build.env && echo ${ROOK_CEPH_CLUSTER_IMAGE}\'',
|
|
|
|
returnStdout: true
|
|
|
|
).trim()
|
2024-07-29 07:47:25 +00:00
|
|
|
def q_io_regex = ~"^quay.io/"
|
2021-04-27 10:45:48 +00:00
|
|
|
|
|
|
|
if (rook_ceph_cluster_image != '') {
|
|
|
|
// single-node-k8s.sh pushes the image into minikube
|
2024-07-29 07:47:25 +00:00
|
|
|
podman_pull(ci_registry, "docker.io", rook_ceph_cluster_image - q_io_regex)
|
2021-04-27 10:45:48 +00:00
|
|
|
}
|
2021-04-28 08:46:23 +00:00
|
|
|
|
2020-08-26 14:42:01 +00:00
|
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
|
|
ssh "./single-node-k8s.sh --k8s-version=${k8s_release}"
|
|
|
|
}
|
2021-04-29 07:07:27 +00:00
|
|
|
|
|
|
|
// busybox is used in external storage testing
|
|
|
|
podman_pull(ci_registry, "docker.io", "library/busybox:1.29")
|
|
|
|
ssh "./podman2minikube.sh docker.io/library/busybox:1.29"
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
stage('deploy ceph-csi through helm') {
|
|
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
|
|
ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh up'
|
|
|
|
ssh "kubectl create namespace '${namespace}'"
|
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi && ./scripts/install-helm.sh install-cephcsi '${namespace}'"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage("create ConfigMap & StorageClasses") {
|
|
|
|
timeout(time: 5, unit: 'MINUTES') {
|
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi/scripts/k8s-storage/ && ./create-configmap.sh '${namespace}'"
|
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi/scripts/k8s-storage/ && ./create-storageclasses.sh '${namespace}'"
|
2024-04-04 10:33:32 +00:00
|
|
|
ssh "cd /opt/build/go/src/github.com/ceph/ceph-csi/scripts/k8s-storage/ && ./create-volumesnapshotclasses.sh '${namespace}'"
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('run e2e') {
|
|
|
|
timeout(time: 120, unit: 'MINUTES') {
|
|
|
|
ssh "KUBE_VERSION=${k8s_release} ./run-k8s-external-storage-e2e.sh"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-11 10:28:55 +00:00
|
|
|
catch (err) {
|
2021-05-11 13:05:05 +00:00
|
|
|
failure = err
|
|
|
|
|
2021-05-11 10:28:55 +00:00
|
|
|
stage('log system status') {
|
|
|
|
ssh './system-status.sh'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-26 14:42:01 +00:00
|
|
|
finally {
|
|
|
|
stage('return bare-metal machine') {
|
2022-12-08 17:18:15 +00:00
|
|
|
sh 'duffy client retire-session ${CICO_SSID}'
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
2021-05-11 13:05:05 +00:00
|
|
|
|
|
|
|
if (failure) {
|
|
|
|
throw failure
|
|
|
|
}
|
2020-08-26 14:42:01 +00:00
|
|
|
}
|
|
|
|
}
|