Skip to content

Commit 36dcfed

Browse files
authored
chore: Workaround the pull rate limit issue noticed with docker images (#2623)
Signed-off-by: Debarati Basu-Nag <dbasunag@redhat.com>
1 parent 43716b7 commit 36dcfed

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

jobs/async-upload/job/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _parser() -> cap.ArgumentParser:
7878
p.add_argument("--destination-oci-registry")
7979
p.add_argument("--destination-oci-username")
8080
p.add_argument("--destination-oci-password")
81-
p.add_argument("--destination-oci-base-image", default="busybox:latest")
81+
p.add_argument("--destination-oci-base-image", default="public.ecr.aws/docker/library/busybox:latest")
8282
# The `type` converter is needed here to support env-based booleans
8383
# See: https://github.com/bw2/ConfigArgParse/tree/master?tab=readme-ov-file#special-values
8484
p.add_argument("--destination-oci-enable-tls-verify", default=True, type=str2bool)

jobs/async-upload/job/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class OCIConfig(BaseModel):
4343
username: str | None = None
4444
password: str | None = None
4545
email: str | None = None
46-
base_image: str = "busybox:latest"
46+
base_image: str = "public.ecr.aws/docker/library/busybox:latest"
4747
enable_tls_verify: bool = True
4848

4949
@model_validator(mode='after')

jobs/async-upload/samples/sample_job_s3_to_oci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ spec:
112112
- name: MODEL_SYNC_DESTINATION_OCI_CREDENTIALS_PATH
113113
value: "/opt/creds/destination/.dockerconfigjson"
114114
- name: MODEL_SYNC_DESTINATION_OCI_BASE_IMAGE
115-
value: "busybox:latest"
115+
value: "public.ecr.aws/docker/library/busybox:latest"
116116
- name: MODEL_SYNC_DESTINATION_OCI_ENABLE_TLS_VERIFY
117117
value: "false"
118118

manifests/kustomize/overlays/db/model-registry-db-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
fsGroup: 999
2626
containers:
2727
- name: db-container
28-
image: mysql:8.3
28+
image: public.ecr.aws/docker/library/mysql:8.3
2929
args:
3030
- --datadir
3131
- /var/lib/mysql/datadir

scripts/manifests/minio/create_bucket.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
restartPolicy: OnFailure
1010
containers:
1111
- name: mc
12-
image: minio/mc
12+
image: quay.io/minio/mc
1313
env:
1414
- name: MINIO_ROOT_USER
1515
valueFrom:

scripts/services/container_registry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: distribution-registry-test
20-
image: docker.io/library/registry:2
20+
image: public.ecr.aws/docker/library/registry:2
2121
args:
2222
- /etc/docker/registry/config.yml
2323
env:

0 commit comments

Comments
 (0)