Rename ocDeploy to ocRollout

This commit is contained in:
Ovidio Mallo 2017-01-03 00:21:04 +01:00
parent e57288eebb
commit 495546894c
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ node() {
stage("Deploy to DEV") {
ocutil.ocTag("rubex-dev", "frontend", "latest", "dev")
ocutil.ocDeploy("rubex-dev", "frontend", config.dev.deployment.frontend)
ocutil.ocRollout("rubex-dev", "frontend", config.dev.deployment.frontend)
}
def isPromoteToTest = false
@ -37,7 +37,7 @@ node() {
ocutil.ocTag("rubex-dev", "frontend", "dev", tagVersion)
ocutil.ocTag("rubex-dev", "frontend", tagVersion, "test")
ocutil.ocDeploy("rubex-test", "frontend", config.test.deployment.frontend)
ocutil.ocRollout("rubex-test", "frontend", config.test.deployment.frontend)
}
}
}