File tree Expand file tree Collapse file tree 4 files changed +232
-42
lines changed Expand file tree Collapse file tree 4 files changed +232
-42
lines changed Original file line number Diff line number Diff line change 11REGISTRY? =gcr.io/k8s-minikube
2- VERSION =v0.0.4
2+ VERSION =v0.0.5-snapshot
33GOOS? =$(shell go env GOOS)
44
55build : # # Build the gcp-auth-webhook binary
@@ -10,3 +10,7 @@ image: ## Create and push multiarch manifest and images
1010 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
1111 KO_DOCKER_REPO=$(REGISTRY ) ./ko publish -B . --platform all -t $(VERSION )
1212 rm ./ko
13+
14+ .PHONY : local-image
15+ local-image : build
16+ docker build -t local/gcp-auth-webhook:$(VERSION ) -f Dockerfile ./out
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ module github.com/GoogleContainerTools/gcp-auth-webhook
33go 1.14
44
55require (
6- k8s.io/api v0.18.5
7- k8s.io/apimachinery v0.18.5
6+ k8s.io/api v0.20.4
7+ k8s.io/apimachinery v0.20.4
88)
You can’t perform that action at this time.
0 commit comments