diff options
| author | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-11-28 14:18:16 -0700 |
|---|---|---|
| committer | Carlos Konstanski <ckonstanski@pippiandcarlos.com> | 2017-11-28 14:18:16 -0700 |
| commit | f8ec26529bf36d1a8cce1c320308e31bd9cd797f (patch) | |
| tree | cf29d6237ff6455471c1804ed14d45fadf2f7cf0 /jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml | |
| parent | 559b3ee77ebe583dae2984ba1c25ea398693995b (diff) | |
rearranging files to support two remotes
Diffstat (limited to 'jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml')
| -rw-r--r-- | jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml b/jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml new file mode 100644 index 0000000..98ca417 --- /dev/null +++ b/jjb/yaml/verizoncloudplatform.com/glance-gateway-if-pipeline.yaml @@ -0,0 +1,37 @@ +--- +- 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") + } + } + } + } |
