gcloud docker now auths k8s.gcr.io by default

This commit is contained in:
Tim Hockin
2017-12-14 20:50:14 -08:00
parent eba5b6092a
commit f7be352a67
28 changed files with 39 additions and 39 deletions

View File

@@ -87,13 +87,13 @@ endif
push: .push-$(ARCH)
.push-$(ARCH): .container-$(ARCH)
gcloud docker --server=k8s.gcr.io -- push $(IMAGE):$(TAG)
gcloud docker -- push $(IMAGE):$(TAG)
touch $@
push-legacy: .push-legacy-$(ARCH)
.push-legacy-$(ARCH): .container-$(ARCH)
ifeq ($(ARCH),amd64)
gcloud docker --server=k8s.gcr.io -- push $(LEGACY_AMD64_IMAGE):$(TAG)
gcloud docker -- push $(LEGACY_AMD64_IMAGE):$(TAG)
endif
touch $@