Skip to content

Commit

Permalink
s/\t/ /g
Browse files Browse the repository at this point in the history
  • Loading branch information
pgavlin committed Aug 23, 2018
1 parent 70cf804 commit 042c75d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/gen/node-templates/helm.ts.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export namespace v2 {
chart: string;
version: string;
namespace?: string;
namespace?: string;
values?: any;
transformations?: ((o: any) => void)[];
fetchOpts?: FetchOpts;
Expand Down Expand Up @@ -60,7 +60,7 @@ export namespace v2 {
const chart = `${shell.quote([chartDir.name])}/${shell.quote([config.chart])}`;
const release = shell.quote([releaseName]);
const values = shell.quote([overrides.name]);
const namespaceArg = config.namespace ? `--namespace ${shell.quote([config.namespace])}` : "";
const namespaceArg = config.namespace ? `--namespace ${shell.quote([config.namespace])}` : "";
const yamlStream = execSync(
`helm template ${chart} --name ${release} --values ${values} ${namespaceArg}`
).toString();
Expand Down

0 comments on commit 042c75d

Please sign in to comment.