Skip to content

Commit 6d1849d

Browse files
committed
updates
1 parent f7090b3 commit 6d1849d

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.1.18
4+
5+
- update helm to v3.3.1
6+
- update kubectl to 1.19.0
7+
38
## v0.1.17
49

510
- update helm to v3.2.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ RUN GOOS=linux go build -mod=vendor -ldflags="-s -w"
88

99
FROM alpine as downloader
1010

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

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

1717
WORKDIR /tmp

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
Drone plugin for Helm3.
88

9-
Helm Version: 3.2.1
10-
Kubectl Version: 1.17.2
9+
Helm Version: 3.3.1
10+
Kubectl Version: 1.19.0
1111

1212
## Drone settings
1313

internal/helm/helm.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ type (
2020

2121
Test bool
2222
TestRollback bool
23+
24+
OnSuccess []func()
25+
OnTestSuccess []func()
26+
OnTestFailed []func()
27+
OnTestFailedRollbackSuccess []func()
28+
OnTestFailedRollbackFailed []func()
2329
}
2430

2531
HelmOption func(*HelmCmd) error

0 commit comments

Comments
 (0)