Skip to content

Commit 747db64

Browse files
committed
fix tests and Makefile
1 parent fe2df70 commit 747db64

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,19 +245,19 @@ build_deps:
245245
# Note: --provenance=false and --sbom=false are required because modern Buildx
246246
# attempts to push attestation manifests that are currently rejected by
247247
# GCP Artifact Registry with a '400 Bad Request' error.
248+
# --cache-from $(IMAGE_REPO_BASE)/$(BUILD_DEPS_REPO_NAME) \
248249
skaffold-builder-ci:
249250
docker buildx build \
250-
--push \
251251
--provenance=false \
252252
--sbom=false \
253-
--cache-from $(IMAGE_REPO_BASE)/$(BUILD_DEPS_REPO_NAME) \
253+
--push \
254254
-f deploy/skaffold/Dockerfile.deps \
255255
-t $(IMAGE_REPO_BASE)/$(BUILD_DEPS_REPO_NAME):latest \
256256
.
257257
time docker buildx build \
258-
--push \
259-
--provenance=false \
258+
--provenance=false \
260259
--sbom=false \
260+
--push \
261261
-f deploy/skaffold/Dockerfile \
262262
--target builder \
263263
-t $(IMAGE_REPO_BASE)/skaffold-builder:latest \

pkg/skaffold/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const (
5252
DefaultBusyboxImage = "gcr.io/k8s-skaffold/skaffold-helpers/busybox"
5353

5454
// DefaultDebugHelpersRegistry is the default location used for the helper images for `debug`.
55-
DefaultDebugHelpersRegistry = "gcr.io/k8s-skaffold/skaffold-debug-support"
55+
DefaultDebugHelpersRegistry = "us-central1-docker.pkg.dev/skaffold-ci-cd/skaffold-debug-support"
5656

5757
DefaultSkaffoldDir = ".skaffold"
5858
DefaultCacheFile = "cache"

0 commit comments

Comments
 (0)