1
0
Fork 0

chore: Add Jenkinsfile

This commit is contained in:
Fleur Kelpin 2018-09-28 17:32:01 +02:00
parent 55716b9122
commit ca2c28619c
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"
}
}
}
}
}