Guest User

Untitled

a guest
May 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. pipeline {
  2. agent any
  3. stages {
  4. stage('BuildDeploy') {
  5. steps {
  6. openshiftBuild(
  7. bldCfg: '<BuildConfig>',
  8. namespace: '<Namespace>',
  9. authToken: '<oc whoami -t>'
  10. )
  11. openshiftVerifyDeployment(
  12. depCfg: '<DeploymentConfig>',
  13. verbose: 'true',
  14. waitTime: '10',
  15. waitUnit: 'min',
  16. namespace: '<Namespace>',
  17. authToken: '<oc whoami -t>'
  18. )
  19. }
  20. }
  21. }
  22. }
Add Comment
Please, Sign In to add comment