Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Need a method for doing an oc tag based promotion #13

Closed
etsauer opened this issue Jun 1, 2018 · 2 comments
Closed

Need a method for doing an oc tag based promotion #13

etsauer opened this issue Jun 1, 2018 · 2 comments
Assignees

Comments

@etsauer
Copy link
Contributor

etsauer commented Jun 1, 2018

@redhat-cop/developer-workflow

@syvanen
Copy link
Contributor

syvanen commented Jun 11, 2018

There's actually not much magic to this:

    stage("Promote image") {
      steps {
        script {
          openshift.withCluster() {
            openshift.tag("${STAGE1}/${APP_NAME}:latest", "${STAGE2}/${APP_NAME}:latest")
          }
        }
      }
    }

@pabrahamsson
Copy link
Contributor

Fixed by #16

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants