a
test/pipeline/head There was a failure building this commit Details

main
onikolskyy 1 year ago
parent 68bbf9222f
commit 3abb8949aa

14
Jenkinsfile vendored

@ -2,7 +2,7 @@ pipeline {
agent {
kubernetes
{
inheritFrom 'dind-agentt'
inheritFrom 'dind-agent'
cloud 'kubernetes'
}
}
@ -23,5 +23,17 @@ pipeline {
milestone(1)
}
}
stage ("deploy") {
steps {
script {
container('kubectl') {
sh """
kubectl set image deployment/test-jenkins-deployment test-jenkins=swr.eu-de.otc.t-systems.com/omnia-test/test-build:${env.BUILD_NUMBER}
"""
}
}
milestone(2)
}
}
}
}
Loading…
Cancel
Save