Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
foosinn committed Sep 2, 2020
1 parent f7090b3 commit 6d1849d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.1.18

- update helm to v3.3.1
- update kubectl to 1.19.0

## v0.1.17

- update helm to v3.2.1
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ RUN GOOS=linux go build -mod=vendor -ldflags="-s -w"

FROM alpine as downloader

ARG HELM_VERSION=3.2.1
ARG HELM_VERSION=3.3.1
ENV HELM_URL=https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz

ARG KUBECTL_VERSION=1.17.2
ARG KUBECTL_VERSION=1.19.0
ENV KUBECTL_URL=https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl

WORKDIR /tmp
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

Drone plugin for Helm3.

Helm Version: 3.2.1
Kubectl Version: 1.17.2
Helm Version: 3.3.1
Kubectl Version: 1.19.0

## Drone settings

Expand Down
6 changes: 6 additions & 0 deletions internal/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ type (

Test bool
TestRollback bool

OnSuccess []func()
OnTestSuccess []func()
OnTestFailed []func()
OnTestFailedRollbackSuccess []func()
OnTestFailedRollbackFailed []func()
}

HelmOption func(*HelmCmd) error
Expand Down

0 comments on commit 6d1849d

Please sign in to comment.