Skip to content

Commit ce08de5

Browse files
authored
chore: remove dockerhub images (#1190)
1 parent 12ec3eb commit ce08de5

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

tests/integration/services/activation/engine/data/auth.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"auths": {
3-
"docker.io": {
4-
"auth": "erfi7sYi89234xJUqaqxgmzcnQ2rRFWM5aJX0EC="
5-
},
63
"quay.io": {
74
"auth": "bWU6c2VjcmV0"
85
}

tools/deploy/eda-api/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ spec:
5757
env:
5858
- name: EDA_DB_HOST
5959
value: eda-postgres
60-
image: docker.io/alpine:latest
60+
image: mirror.gcr.io/alpine:latest
6161
command: [ 'sh', '-c', "until nslookup ${EDA_DB_HOST}.$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace).svc.cluster.local; do echo waiting for ${EDA_DB_HOST}; sleep 2; done" ]
6262
status: {}

tools/deploy/redis/deployment.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
- env: []
20-
image: docker.io/library/redis:6
20+
image: mirror.gcr.io/library/redis:6
2121
name: redis
2222
ports:
2323
- containerPort: 6379

tools/docker/docker-compose-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ services:
7070
start_period: 5s
7171

7272
redis:
73-
image: ${EDA_REDIS_IMAGE:-docker.io/library/redis}:${EDA_REDIS_VERSION:-6.2.14}
73+
image: ${EDA_REDIS_IMAGE:-mirror.gcr.io/library/redis}:${EDA_REDIS_VERSION:-6.2.14}
7474
ports:
7575
- '${EDA_REDIS_PORT:-6379}:6379'
7676
healthcheck:

tools/docker/nginx/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build eda-ui
2-
FROM docker.io/node:18-alpine AS ui-builder
2+
FROM mirror.gcr.io/node:18-alpine AS ui-builder
33

44
WORKDIR /app/ansible-ui
55

@@ -9,7 +9,7 @@ RUN npm ci --omit=dev --omit=optional --ignore-scripts
99
COPY tmp/ansible-ui /app/ansible-ui
1010
RUN cd /app/ansible-ui && npm run build:eda
1111

12-
FROM docker.io/nginx
12+
FROM mirror.gcr.io/nginx
1313
ARG NGINX_CONF=tools/docker/nginx/default.conf
1414
ARG NGINX_CONFIGURATION_PATH=/etc/nginx/conf.d/
1515

0 commit comments

Comments
 (0)