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 1
1
REGISTRY? =gcr.io/k8s-minikube
2
- VERSION =v0.0.4
2
+ VERSION =v0.0.5-snapshot
3
3
GOOS? =$(shell go env GOOS)
4
4
5
5
build : # # Build the gcp-auth-webhook binary
@@ -10,3 +10,7 @@ image: ## Create and push multiarch manifest and images
10
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
11
11
KO_DOCKER_REPO=$(REGISTRY ) ./ko publish -B . --platform all -t $(VERSION )
12
12
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
3
3
go 1.14
4
4
5
5
require (
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
8
8
)
You can’t perform that action at this time.
0 commit comments