We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bc4a37 + 06a7c61 commit 1b44e85Copy full SHA for 1b44e85
Makefile
@@ -1,13 +1,13 @@
1
REGISTRY?=gcr.io/k8s-minikube
2
-VERSION=v0.0.6
+VERSION=v0.0.7
3
GOOS?=$(shell go env GOOS)
4
5
build: ## Build the gcp-auth-webhook binary
6
CGO_ENABLED=0 GOOS=linux go build -o out/gcp-auth-webhook server.go
7
8
.PHONY: image
9
image: ## Create and push multiarch manifest and images
10
- curl -L https://github.com/google/ko/releases/download/v0.8.0/ko_0.8.0_$(GOOS)_x86_64.tar.gz | tar xzf - ko && chmod +x ./ko
+ curl -L https://github.com/google/ko/releases/download/v0.8.3/ko_0.8.3_$(GOOS)_x86_64.tar.gz | tar xzf - ko && chmod +x ./ko
11
KO_DOCKER_REPO=$(REGISTRY) ./ko publish -B . --platform all -t $(VERSION)
12
rm ./ko
13
0 commit comments