Sets --ignore-var-run to true

This commit is contained in:
Hyatt 2025-01-17 07:33:51 -06:00
parent 8fa969db21
commit c3e48264d6
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 4 additions and 4 deletions

View File

@ -93,7 +93,7 @@ def buildContainer (Map config, List buildArg = []) {
/kaniko/executor \\
--force \\
--context "${ws}" \\
--ignore-var-run=false \\
--ignore-var-run=true \\
-f "${ws}/Dockerfile" \\
--destination "${config.imageDest}" \\
${buildArguments}
@ -128,7 +128,7 @@ def buildContainerMultipleDestinations (Map config, List buildArg = []) {
/kaniko/executor \\
--force \\
--context "${ws}" \\
--ignore-var-run=false \\
--ignore-var-run=true \\
-f "${ws}/Dockerfile" \\
${buildArguments}
"""

View File

@ -123,7 +123,7 @@ def buildContainer (Map config, List buildArg = []) {
/kaniko/executor \\
--force \\
--context "${ws}" \\
--ignore-var-run=false \\
--ignore-var-run=true \\
-f "${ws}/Dockerfile" \\
--destination "${config.imageDest}" \\
${buildArguments}
@ -162,7 +162,7 @@ def buildContainerMultipleDestinations (Map config, List buildArg = []) {
/kaniko/executor \\
--force \\
--context "${ws}" \\
--ignore-var-run=false \\
--ignore-var-run=true \\
-f "${ws}/Dockerfile" \\
${buildArguments}
"""