Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:3.15
ENV BASE_URL="https://get.helm.sh"

ENV HELM_2_FILE="helm-v2.17.0-linux-amd64.tar.gz"
ENV HELM_3_FILE="helm-v3.4.2-linux-amd64.tar.gz"
ENV HELM_3_FILE="helm-v3.12.2-linux-amd64.tar.gz"

RUN apk add --no-cache ca-certificates \
--repository http://dl-cdn.alpinelinux.org/alpine/v3.15/community \
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ function renderFiles(files, data) {
*/
function deleteCmd(helm, namespace, release) {
if (helm === "helm3") {
return ["delete", "-n", namespace, release];
return ["uninstall", "-n", namespace, release];
}
return ["delete", "--purge", release];
return ["uninstall", "--purge", release];
}

/**
Expand Down