Update Jenkinsfile

This commit is contained in:
2025-05-22 15:57:24 +03:00
parent bd01708491
commit 9a554a9839

2
Jenkinsfile vendored
View File

@@ -145,7 +145,7 @@ spec:
stage('Deploy Helm Chart') {
agent { label 'local' }
steps {
sh 'helm install example-app my-helm-repo/example-app --version 1.0.0-SNAPSHOT --set port=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'
}
}