1
0
Fork 0

chore: Add Jenkinsfile

This commit is contained in:
Fleur Kelpin 2018-09-29 14:52:11 +02:00
parent b64ee00cff
commit 26d366f1a1
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent {
kubernetes {
label 'helm'
}
}
stages {
stage('Test') {
steps {
container('chart-testing') {
sh "chart_test.sh --no-install --all"
}
}
}
}
}