From 8db9524fed96d61cd8a99f6c6362c0eed0e3aafd Mon Sep 17 00:00:00 2001 From: konsthol Date: Tue, 27 May 2025 17:59:11 +0300 Subject: [PATCH] Update vars/jenkinsPipelineSkeleton.groovy --- vars/jenkinsPipelineSkeleton.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/jenkinsPipelineSkeleton.groovy b/vars/jenkinsPipelineSkeleton.groovy index 76acf8a..8adc557 100644 --- a/vars/jenkinsPipelineSkeleton.groovy +++ b/vars/jenkinsPipelineSkeleton.groovy @@ -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) } } }