1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Fleur Kelpin b564a6e2ea chore: Add Jenkinsfile 2018-09-28 17:32:01 +02:00
1 changed files with 19 additions and 0 deletions

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
pipeline {
agent {
kubernetes {
label 'helm'
}
}
environment {
}
stages {
stage('Retrieve build secrets') {
steps {
container('chart-testing') {
chart_test.sh --no-install --all
}
}
}
}
}