From db56b1f5fd543e5fb038488421aa52056a0c5225 Mon Sep 17 00:00:00 2001 From: konsthol Date: Thu, 29 May 2025 11:10:34 +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 a21d3e5..d50a45f 100644 --- a/vars/jenkinsPipelineSkeleton.groovy +++ b/vars/jenkinsPipelineSkeleton.groovy @@ -39,7 +39,7 @@ def call(String projectName, Map config) { stage('Build and Deploy') { steps { script { - buildAndDeploy(projectName, config.helmChart, config.helmRepo, config.namespace, config.version, config.useCustomDocker, config.useInsecureRegistry, config.port) + buildAndDeploy(projectName, config.helmChart, config.helmRepo, config.namespace, config.version, config.useCustomDocker, config.useInsecureRegistry, config.port, config.quarkusDBName, config.quarkusDBPass) } } }