1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
Fleur Kelpin ca2c28619c chore: Add Jenkinsfile 2018-09-28 17:39:55 +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') {
sh "chart_test.sh --no-install --all"
}
}
}
}
}