Skip to content

Commit

Permalink
fix: quote json string in helm args
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Oct 11, 2023
1 parent b72eec0 commit 43228a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/kubernetes/integrations/nginx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export async function helmNginxInstall(
"--timeout",
HELM_INGRESS_NGINX_DEPLOYMENT_TIMEOUT,
"--set-json",
JSON.stringify(values),
`'${JSON.stringify(values)}'`,
]

log.info(`Installing nginx in ${namespace} namespace...`)
Expand Down

0 comments on commit 43228a8

Please sign in to comment.