Skip to content

Commit

Permalink
Support for Helm 3.7.2 and k8s 1.23.0 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby authored Dec 9, 2021
1 parent d3ad0ea commit 582798c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/image-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/386,linux/ppc64le,linux/s390x
build-args: |
KUBE_VERSION=1.22.2
HELM_VERSION=3.7.1
KUBE_VERSION=1.23.0
HELM_VERSION=3.7.2
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ RUN apk add --no-cache ca-certificates bash git openssh curl gettext jq bind-too
&& chmod +x /usr/local/bin/helm /usr/local/bin/kubectl \
&& mkdir /config \
&& chmod g+rwx /config /root \
&& helm repo add "stable" "https://charts.helm.sh/stable" --force-update
&& helm repo add "stable" "https://charts.helm.sh/stable" --force-update \
&& kubectl version --client \
&& helm version

WORKDIR /config

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ DOCKER_TAG ?= `git rev-parse --abbrev-ref HEAD`

# Note: Latest version of kubectl may be found at:
# https://github.com/kubernetes/kubernetes/releases
KUBE_VERSION = "1.22.2"
KUBE_VERSION = "1.23.0"

# Note: Latest version of helm may be found at
# https://github.com/kubernetes/helm/releases
HELM_VERSION = "3.7.1"
HELM_VERSION = "3.7.2"

docker_build:
@docker buildx build \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Supported tags and release links

* [3.7.2](https://github.com/dtzar/helm-kubectl/releases/tag/3.7.2) - helm v3.7.2, kubectl v1.23.0, alpine 3.15
* [3.7.1](https://github.com/dtzar/helm-kubectl/releases/tag/3.7.1) - helm v3.7.1, kubectl v1.22.2, alpine 3.14
* [3.7.0](https://github.com/dtzar/helm-kubectl/releases/tag/3.7.0) - helm v3.7.0, kubectl v1.22.2, alpine 3.14
* [3.6.3](https://github.com/dtzar/helm-kubectl/releases/tag/3.6.3) - helm v3.6.3, kubectl v1.21.2, alpine 3.14
Expand Down

0 comments on commit 582798c

Please sign in to comment.