Created
January 28, 2017 09:24
-
-
Save magick93/ac0550765232fb38be85532939c7b9a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/groovy | |
@Library('github.com/fabric8io/fabric8-pipeline-library@master') | |
def localItestPattern = "" | |
try { | |
localItestPattern = ITEST_PATTERN | |
} catch (Throwable e) { | |
localItestPattern = "*KT" | |
} | |
def localFailIfNoTests = "" | |
try { | |
localFailIfNoTests = ITEST_FAIL_IF_NO_TEST | |
} catch (Throwable e) { | |
localFailIfNoTests = "false" | |
} | |
def versionPrefix = "" | |
try { | |
versionPrefix = VERSION_PREFIX | |
} catch (Throwable e) { | |
versionPrefix = "1.0" | |
} | |
def canaryVersion = "${versionPrefix}.${env.BUILD_NUMBER}" | |
def fabric8Console = "${env.FABRIC8_CONSOLE ?: ''}" | |
def utils = new io.fabric8.Utils() | |
def label = "buildpod.${env.JOB_NAME}.${env.BUILD_NUMBER}".replace('-', '_').replace('/', '_') | |
mavenNode{ | |
def envStage = utils.environmentNamespace('staging') | |
def envProd = utils.environmentNamespace('production') | |
git = git branch: 'feature/10-endpoint-for-updates', credentialsId: 'mycompany', url: 'https://gitlab.com/myCO/MYREPO.git' | |
echo 'NOTE: running pipelines for the first time will take longer as build and base docker images are pulled onto the node' | |
container(name: 'maven') { | |
stage 'Build Release' | |
mavenCanaryRelease { | |
version = canaryVersion | |
} | |
stage 'Integration Testing' | |
mavenIntegrationTest { | |
environment = 'Testing' | |
failIfNoTests = localFailIfNoTests | |
itestPattern = localItestPattern | |
} | |
stage 'Rollout Staging' | |
kubernetesApply(environment: envStage) | |
stage 'Approve' | |
approve { | |
room = null | |
version = canaryVersion | |
console = fabric8Console | |
environment = 'Staging' | |
} | |
stage 'Rollout Production' | |
kubernetesApply(environment: envProd) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment