Skip to content

Commit 13d0dde

Browse files
committed
add image pull secret to new service accounts
1 parent 19aa2f5 commit 13d0dde

File tree

4 files changed

+232
-42
lines changed

4 files changed

+232
-42
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
REGISTRY?=gcr.io/k8s-minikube
2-
VERSION=v0.0.4
2+
VERSION=v0.0.5-snapshot
33
GOOS?=$(shell go env GOOS)
44

55
build: ## 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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module github.com/GoogleContainerTools/gcp-auth-webhook
33
go 1.14
44

55
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
88
)

0 commit comments

Comments
 (0)