Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade helm to 2.17.0 and kubectl to 1.19.0 #106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ COPY --from=builder /go/src/github.com/ipedrazas/drone-helm/drone-helm /bin/

# Helm version: can be passed at build time
ARG VERSION
ENV VERSION ${VERSION:-v2.14.1}
ENV VERSION ${VERSION:-v2.17.0}
ENV FILENAME helm-${VERSION}-linux-amd64.tar.gz

ARG KUBECTL
ENV KUBECTL ${KUBECTL:-v1.14.3}
ENV KUBECTL ${KUBECTL:-v1.19.0}

RUN set -ex \
&& apk add --no-cache curl ca-certificates \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

This plugin allows to deploy a [Helm](https://github.com/kubernetes/helm) chart into a [Kubernetes](https://github.com/kubernetes/kubernetes) cluster.

* Current `helm` version: 2.14.1
* Current `kubectl` version: 1.14.3
* Current `helm` version: 2.17.0
* Current `kubectl` version: 1.19.0

## Drone Pipeline Usage

Expand Down Expand Up @@ -54,6 +54,6 @@ export ACTION=add

This repo is setup in a way that if you enable a personal drone server to build your fork it will
build and publish your image (makes it easier to test PRs and use the image till the contributions get merged)

* Build local ```DRONE_REPO_OWNER=ipedrazas DRONE_REPO_NAME=drone-helm drone exec```
* on your server just make sure you have DOCKER_USERNAME, DOCKER_PASSWORD, and DOCKERHUB_REPO set as secrets