Update Jenkinsfile

This commit is contained in:
Nana Janashia
2020-12-03 15:23:58 +00:00
parent 7848de66a2
commit 2f9fd78922

10
Jenkinsfile vendored
View File

@@ -16,15 +16,18 @@ pipeline {
stage("build jar") {
steps {
script {
echo "bla"
echo "building jar"
//gv.buildJar()
sh 'helm repo add brigade https://brigadecore.github.io/charts"
sh 'helm search repo brigade'
}
}
}
stage("build image") {
steps {
script {
echo "bla"
echo "building image"
//gv.buildImage()
}
}
@@ -32,7 +35,8 @@ pipeline {
stage("deploy") {
steps {
script {
gv.deployApp()
echo "deploying"
//gv.deployApp()
}
}
}