First change since it was all working

This commit is contained in:
2025-05-26 09:51:57 +03:00
parent 301ecd3d9a
commit 8fba5954a1

9
Jenkinsfile vendored
View File

@@ -136,6 +136,14 @@ spec:
} }
} }
} }
stage('check Helm Repo') {
steps {
container('helm') {
sh 'helm repo list'
}
}
}
/*
stage('check Helm Repo') { stage('check Helm Repo') {
agent { label 'local' } agent { label 'local' }
steps { steps {
@@ -155,6 +163,7 @@ spec:
sh 'helm install example-app my-helm-repo/example-app --version 1.0.0-SNAPSHOT --set app.ports.http=8090 --set imagePullSecrets[0]=nexus-secret' sh 'helm install example-app my-helm-repo/example-app --version 1.0.0-SNAPSHOT --set app.ports.http=8090 --set imagePullSecrets[0]=nexus-secret'
} }
} }
*/
} }
post { post {