Update vars/jenkinsPipelineSkeleton.groovy

This commit is contained in:
2025-05-27 17:59:11 +03:00
parent 046ab7c6ad
commit 8db9524fed

View File

@@ -29,7 +29,7 @@ def call(String projectName, Map config) {
stage('Build and Deploy') {
steps {
script {
buildAndDeploy(projectName, config.helmChart, config.helmRepo, config.version, config.useCustomDocker, config.port)
buildAndDeploy(projectName, config.helmChart, config.helmRepo, config.version, config.useCustomDocker, config.useInsecureRegistry, config.port)
}
}
}