Skip to content

Commit

Permalink
Add vars to image building pipeline
Browse files Browse the repository at this point in the history
Adds vars to image building pipeline for building node images with
older versions of k8s

Signed-off-by: Sunnatillo <sunnat.samadov@est.tech>
  • Loading branch information
Sunnatillo committed Jan 27, 2025
1 parent 798f600 commit af19c77
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions jenkins/jobs/image_building.pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ ci_git_url = "https://github.com/metal3-io/project-infra.git"
pipeline {
agent none
environment {
IMAGE_TYPE = "${IMAGE_TYPE}"
IMAGE_TYPE = "${env.IMAGE_TYPE}"
METAL3_CI_USER="metal3ci"
KUBERNETES_VERSION = "${KUBERNETES_VERSION}"
CRICTL_VERSION = "${CRICTL_VERSION}"
CRIO_VERSION = "${CRIO_VERSION}"
KUBERNETES_VERSION = "${env.KUBERNETES_VERSION}"
CRICTL_VERSION = "${env.CRICTL_VERSION}"
CRIO_VERSION = "${env.CRIO_VERSION}"
RT_URL="https://artifactory.nordix.org/artifactory"
CAPM3RELEASEBRANCH = "${env.capm3_release_branch}"
BMORELEASEBRANCH = "${env.bmo_release_branch}"
CAPI_VERSION = "${env.CAPI_VERSION}"
CAPM3_VERSION = "${env.CAPM3_VERSION}"
}
stages {
stage('SCM') {
Expand Down

0 comments on commit af19c77

Please sign in to comment.