Skip to content

chore: move all images to new GCP project #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions integration/integrationtest/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ import (
const (
// DockerdImage is a large image (~1GB) and should only be used to test
// dockerd.
DockerdImage = "gcr.io/coder-dev-1/sreya/enterprise-base:ubuntu"
DockerdImage = "us-docker.pkg.dev/coder-v2-images-public/public/envbox/enterprise-base:ubuntu"
// HelloWorldImage is useful for testing a CVM's dockerd is functioning
// correctly
HelloWorldImage = "gcr.io/coder-dev-1/sreya/hello-world"
HelloWorldImage = "us-docker.pkg.dev/coder-v2-images-public/public/envbox/hello-world"
// UbuntuImage is just vanilla ubuntu (80MB) but the user is set to a non-root
// user .
UbuntuImage = "gcr.io/coder-dev-1/sreya/ubuntu-coder"
UbuntuImage = "us-docker.pkg.dev/coder-v2-images-public/public/envbox/ubuntu-coder"
// Redhat UBI9 image as of 2025-03-05
RedhatImage = "registry.access.redhat.com/ubi9/ubi:9.5"
// CUDASampleImage is a CUDA sample image from NVIDIA's container registry.
Expand All @@ -49,7 +49,7 @@ const (
// RegistryImage is used to assert that we add certs
// correctly to the docker daemon when pulling an image
// from a registry with a self signed cert.
registryImage = "gcr.io/coder-dev-1/sreya/registry"
registryImage = "us-docker.pkg.dev/coder-v2-images-public/public/envbox/registry"
registryTag = "2.8.3"
)

Expand Down
Loading