feat: enable helm via. kustomize
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
d0d591dd4f
commit
7b136b1331
@ -51,7 +51,10 @@ impl KustomizeCommand {
|
||||
let _ = std::fs::remove_dir_all(&self.destination);
|
||||
std::fs::create_dir_all(&self.destination)?;
|
||||
|
||||
let cmd = cmd.arg("kustomize").arg(self.kustomize_folder);
|
||||
let cmd = cmd
|
||||
.arg("kustomize")
|
||||
.arg("--enable-helm")
|
||||
.arg(self.kustomize_folder);
|
||||
let output = cmd.output().context("failed to run kubectl kustomize")?;
|
||||
|
||||
if !output.status.success() {
|
||||
|
Loading…
Reference in New Issue
Block a user