--- - job: name: glance-gateway-gg-pipeline project-type: pipeline dsl: | pipeline { agent { node { label "master" } } stages { stage("checkout-manifests") { agent { node { label "glance_gateway" customWorkspace "workspace/glance-gateway" } } steps { git(poll: false, branch: "master", url: "git@github.vcp.vzwnet.com:konstca/glance-gateway.git") } } stage("update-images") { agent { node { label "glance_gateway" customWorkspace "workspace/image-foundry" } } steps { git(poll: false, branch: "master", url: "git@github.vcp.vzwnet.com:konstca/image-foundry.git") sh(script: "./glance-gateway.sh") } } } }