Skip to content

Commit

Permalink
Prevent string to numeric
Browse files Browse the repository at this point in the history
  • Loading branch information
dacleyra committed Sep 26, 2017
1 parent f2e7c23 commit f9ea73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/microserviceBuilderPipeline.groovy
Expand Up @@ -177,7 +177,7 @@ def call(body) {
// We're moving to Helm-only deployments. Use Helm to install a deployment to test against.
container ('helm') {
sh "helm init --client-only"
def deployCommand = "helm install ${realChartFolder} --wait --set test=true,image.repository=${registry}${image},image.tag=${imageTag} --namespace ${testNamespace} --name ${tempHelmRelease}"
def deployCommand = "helm install ${realChartFolder} --wait --set test=true,image.repository=${registry}${image},image.tag=\\"${imageTag}\\" --namespace ${testNamespace} --name ${tempHelmRelease}"
if (fileExists("chart/overrides.yaml")) {
deployCommand += " --values chart/overrides.yaml"
}
Expand Down

0 comments on commit f9ea73a

Please sign in to comment.