vn-autoconfig/Jenkinsfile

41 lines
955 B
Plaintext
Raw Normal View History

2020-01-15 10:25:33 +00:00
#!/usr/bin/env groovy
pipeline {
agent any
environment {
PROJECT_NAME = 'vn-autoconfig'
}
stages {
2021-04-29 22:03:39 +00:00
stage('Build') {
2020-01-15 10:25:33 +00:00
when {
branch 'master'
}
2020-01-31 20:27:53 +00:00
environment {
CREDENTIALS = credentials('docker-registry')
}
steps {
2021-04-29 22:03:39 +00:00
dockerBuild()
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
2024-05-21 18:52:22 +00:00
withKubeConfig([
serverUrl: "$KUBERNETES_API",
credentialsId: 'kubernetes',
namespace: 'autoconfig'
]) {
sh 'kubectl set image deployment/autoconfig autoconfig=registry.verdnatura.es/vn-autoconfig:latest'
}
2020-01-31 20:27:53 +00:00
}
2020-01-15 10:25:33 +00:00
}
}
post {
always {
2024-05-21 18:52:22 +00:00
setEnv()
2020-01-31 12:33:02 +00:00
sendEmail()
2020-01-15 10:25:33 +00:00
}
}
}