@@ -32,7 +32,7 @@ DOCKER_BUILDX_CMD ?= docker buildx
32
32
IMAGE_BUILD_CMD ?= $(DOCKER_BUILDX_CMD ) build
33
33
IMAGE_BUILD_EXTRA_OPTS ?=
34
34
# TODO(#52): Add kueue to k8s gcr registry
35
- STAGING_IMAGE_REGISTRY := gcr.io /k8s-staging-kueue
35
+ STAGING_IMAGE_REGISTRY := us-central1-docker.pkg.dev /k8s-staging-images/ kueue
36
36
IMAGE_REGISTRY ?= $(STAGING_IMAGE_REGISTRY )
37
37
IMAGE_NAME := kueue
38
38
IMAGE_REPO ?= $(IMAGE_REGISTRY ) /$(IMAGE_NAME )
@@ -212,7 +212,7 @@ image-push: image-build
212
212
213
213
.PHONY : helm-chart-push
214
214
helm-chart-push : yq helm
215
- EXTRA_TAG=" $( EXTRA_TAG) " GIT_TAG=" $( GIT_TAG) " HELM_CHART_REPO=" $( HELM_CHART_REPO) " IMAGE_REPO=" $( IMAGE_REPO) " HELM=" $( HELM) " YQ=" $( YQ) " ./hack/push-chart.sh
215
+ EXTRA_TAG=" $( EXTRA_TAG) " GIT_TAG=" $( GIT_TAG) " IMAGE_REGISTRY= " $( IMAGE_REGISTRY ) " HELM_CHART_REPO=" $( HELM_CHART_REPO) " IMAGE_REPO=" $( IMAGE_REPO) " HELM=" $( HELM) " YQ=" $( YQ) " ./hack/push-chart.sh
216
216
217
217
# Build an amd64 image that can be used for Kind E2E tests.
218
218
.PHONY : kind-image-build
@@ -226,7 +226,7 @@ ifndef ignore-not-found
226
226
ignore-not-found = false
227
227
endif
228
228
229
- clean-manifests = (cd config/components/manager && $(KUSTOMIZE ) edit set image controller=gcr.io /k8s-staging-kueue/kueue:$(RELEASE_BRANCH ) )
229
+ clean-manifests = (cd config/components/manager && $(KUSTOMIZE ) edit set image controller=us-central1-docker.pkg.dev /k8s-staging-images/ kueue/kueue:$(RELEASE_BRANCH ) )
230
230
231
231
.PHONY : install
232
232
install : manifests kustomize # # Install CRDs into the K8s cluster specified in ~/.kube/config.
@@ -284,7 +284,7 @@ prepare-release-branch: yq kustomize ## Prepare the release branch with the rele
284
284
# #@ Debug
285
285
286
286
# Build an image that can be used with kubectl debug
287
- # Developers don't need to build this image, as it will be available as gcr.io /k8s-staging-kueue/debug
287
+ # Developers don't need to build this image, as it will be available as us-central1-docker.pkg.dev /k8s-staging-images/ kueue/debug
288
288
.PHONY : debug-image-push
289
289
debug-image-push : # # Build and push the debug image to the registry
290
290
$(IMAGE_BUILD_CMD ) -t $(IMAGE_REGISTRY ) /debug:$(GIT_TAG ) \
@@ -312,7 +312,7 @@ importer-image-build:
312
312
importer-image-push : PUSH=--push
313
313
importer-image-push : importer-image-build
314
314
315
- # Build a docker local gcr.io /k8s-staging-kueue/importer image
315
+ # Build a docker local us-central1-docker.pkg.dev /k8s-staging-images/ kueue/importer image
316
316
.PHONY : importer-image
317
317
importer-image : PLATFORMS=linux/amd64
318
318
importer-image : PUSH=--load
0 commit comments