Skip to content

Commit

Permalink
Merge pull request #957 from Nordix/add-vars-to-image-building-sunnat
Browse files Browse the repository at this point in the history
Add vars to image building pipeline
  • Loading branch information
metal3-io-bot authored Jan 27, 2025
2 parents 798f600 + af19c77 commit da8f0e9
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 da8f0e9

Please sign in to comment.