Update Jenkinsfile

This commit is contained in:
2025-05-22 12:11:25 +03:00
parent b4baad2dcd
commit 77829536d0

4
Jenkinsfile vendored
View File

@@ -130,14 +130,14 @@ spec:
}
}
stage('Setup Helm Repo') {
agent any
agent { node { label 'Built-In Node' } }
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
agent { node { label 'Built-In Node' } }
steps {
sh 'helm install example-app my-helm-repo/example-app --set port=8090'
}