From 0397b796eb34908921cbabfe7bdf4fe0c4c5c493 Mon Sep 17 00:00:00 2001 From: Steven Powell <44844360+spowelljr@users.noreply.github.com> Date: Thu, 9 Oct 2025 15:00:03 -0700 Subject: [PATCH 1/2] Release v0.1.4 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 14925ec..4e694f2 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ REGISTRY?=gcr.io/k8s-minikube -VERSION=v0.1.3 +VERSION=v0.1.4 GOOS?=$(shell go env GOOS) GOARCH?=$(shell go env GOARCH) ARCH=$(if $(findstring amd64, $(GOARCH)),x86_64,$(GOARCH)) -KO_VERSION=0.16.0 +KO_VERSION=0.18.0 BASE_IMAGE?=gcr.io/distroless/static:nonroot build: ## Build the gcp-auth-webhook binary From a4f89ad6d2fb7eb3e9dd0acf279b8d62c68a518b Mon Sep 17 00:00:00 2001 From: Steven Powell <44844360+spowelljr@users.noreply.github.com> Date: Thu, 9 Oct 2025 15:06:36 -0700 Subject: [PATCH 2/2] Update KO download URL in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4e694f2..626195c 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ build: ## Build the gcp-auth-webhook binary .PHONY: image image: ## Create and push multiarch manifest and images @read -p "This will build and push $(REGISTRY)/gcp-auth-webhook:$(VERSION). Do you want to proceed? (Y/N): " confirm && echo $$confirm | grep -iq "^[yY]" || exit 1; - curl -L https://github.com/google/ko/releases/download/v$(KO_VERSION)/ko_$(KO_VERSION)_$(GOOS)_$(ARCH).tar.gz | tar xzf - ko && chmod +x ./ko + curl -L https://github.com/ko-build/ko/releases/download/v$(KO_VERSION)/ko_$(KO_VERSION)_$(GOOS)_$(ARCH).tar.gz | tar xzf - ko && chmod +x ./ko GOFLAGS="-ldflags=-X=main.Version=$(VERSION)" KO_DOCKER_REPO=$(REGISTRY) KO_DEFAULTBASEIMAGE=$(BASE_IMAGE) ./ko publish -B . --platform all -t $(VERSION) rm ./ko