Skip to content

Commit

Permalink
Support for Helm 3.12.0 and k8s 1.27.1 (#135)
Browse files Browse the repository at this point in the history
* Support for Helm 3.12.0 and k8s 1.27.1

* Fix Makefile by adding YQ_VERSION as build-arg
  • Loading branch information
jnoordsij authored May 11, 2023
1 parent 33e402c commit f2eaf94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
KUBE_VERSION=1.26.4
HELM_VERSION=3.11.3
KUBE_VERSION=1.27.1
HELM_VERSION=3.12.0
YQ_VERSION=4.33.3
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
default: docker_build
include .env

# Note:
# Note:
# Latest version of kubectl may be found at: https://github.com/kubernetes/kubernetes/releases
# Latest version of helm may be found at: https://github.com/kubernetes/helm/releases
# Latest version of yq may be found at: https://github.com/mikefarah/yq/releases
Expand All @@ -14,8 +14,9 @@ docker_build:
@docker buildx build \
--build-arg KUBE_VERSION=$(KUBE_VERSION) \
--build-arg HELM_VERSION=$(HELM_VERSION) \
--build-arg YQ_VERSION=$(YQ_VERSION) \
-t $(DOCKER_IMAGE):$(DOCKER_TAG) .

docker_push:
# Push to DockerHub
docker push $(DOCKER_IMAGE):$(DOCKER_TAG)
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.12.0](https://github.com/dtzar/helm-kubectl/releases/tag/3.12.0) - helm v3.12.0, kubectl v1.27.1, alpine 3.18
* [3.11.3](https://github.com/dtzar/helm-kubectl/releases/tag/3.11.3) - helm v3.11.3, kubectl v1.26.4, alpine 3.17
* [3.11.2](https://github.com/dtzar/helm-kubectl/releases/tag/3.11.2) - helm v3.11.2, kubectl v1.26.2, alpine 3.17
* [3.11.1](https://github.com/dtzar/helm-kubectl/releases/tag/3.11.1) - helm v3.11.1, kubectl v1.26.1, alpine 3.17
Expand Down

0 comments on commit f2eaf94

Please sign in to comment.