Skip to content

Commit

Permalink
feat: Add delete --purge for helm2
Browse files Browse the repository at this point in the history
  • Loading branch information
colinjfw committed Sep 29, 2019
1 parent 3edcc80 commit de6b027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function deleteCmd(helm, namespace, release) {
if (helm === "helm3") {
return ["delete", "-n", namespace, release];
}
return ["delete", release];
return ["delete", "--purge", release];
}

/**
Expand Down

0 comments on commit de6b027

Please sign in to comment.