Skip to content

Commit

Permalink
fix(deploy-helm.ts): fixed namespace specification fron -n to --names…
Browse files Browse the repository at this point in the history
…pace
  • Loading branch information
mehdi-ra committed Jul 25, 2023
1 parent b407500 commit 82f4492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/deploy-helm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function deployHelmChart(config: {
}/${config.chartName} -f ${config.valuesPath} --version ${
config.chartVersion
} ${
config?.namespace ? `-n ${config.namespace}` : ''
config?.namespace ? `--namespace ${config.namespace}` : ''
} --kubeconfig kubeconfig`,
{stdio: 'inherit', cwd: repositoryDirectory}
)
Expand Down

0 comments on commit 82f4492

Please sign in to comment.