chore: Add Jenkinsfile
This commit is contained in:
parent
72ea0f9424
commit
ee809b636d
|
@ -0,0 +1,16 @@
|
|||
pipeline {
|
||||
agent {
|
||||
kubernetes {
|
||||
label 'helm'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
container('chart-testing') {
|
||||
sh "chart_test.sh --no-install --all"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue