Update Jenkinsfile

This commit is contained in:
2025-05-22 11:52:48 +03:00
parent 5c489c47ef
commit b4baad2dcd

2
Jenkinsfile vendored
View File

@@ -130,12 +130,14 @@ spec:
}
}
stage('Setup Helm Repo') {
agent any
steps {
sh 'helm repo add my-helm-repo http://nexus-repo-nexus-repository-manager:8081/repository/my-helm-repo/'
sh 'helm repo update'
}
}
stage('Deploy Helm Chart') {
agent any
steps {
sh 'helm install example-app my-helm-repo/example-app --set port=8090'
}