Skip to content

Commit

Permalink
chore: remove dockerhub images (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkayyali812 authored Jan 17, 2025
1 parent 12ec3eb commit ce08de5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions tests/integration/services/activation/engine/data/auth.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"auths": {
"docker.io": {
"auth": "erfi7sYi89234xJUqaqxgmzcnQ2rRFWM5aJX0EC="
},
"quay.io": {
"auth": "bWU6c2VjcmV0"
}
Expand Down
2 changes: 1 addition & 1 deletion tools/deploy/eda-api/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ spec:
env:
- name: EDA_DB_HOST
value: eda-postgres
image: docker.io/alpine:latest
image: mirror.gcr.io/alpine:latest
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" ]
status: {}
2 changes: 1 addition & 1 deletion tools/deploy/redis/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- env: []
image: docker.io/library/redis:6
image: mirror.gcr.io/library/redis:6
name: redis
ports:
- containerPort: 6379
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/docker-compose-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ services:
start_period: 5s

redis:
image: ${EDA_REDIS_IMAGE:-docker.io/library/redis}:${EDA_REDIS_VERSION:-6.2.14}
image: ${EDA_REDIS_IMAGE:-mirror.gcr.io/library/redis}:${EDA_REDIS_VERSION:-6.2.14}
ports:
- '${EDA_REDIS_PORT:-6379}:6379'
healthcheck:
Expand Down
4 changes: 2 additions & 2 deletions tools/docker/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build eda-ui
FROM docker.io/node:18-alpine AS ui-builder
FROM mirror.gcr.io/node:18-alpine AS ui-builder

WORKDIR /app/ansible-ui

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

FROM docker.io/nginx
FROM mirror.gcr.io/nginx
ARG NGINX_CONF=tools/docker/nginx/default.conf
ARG NGINX_CONFIGURATION_PATH=/etc/nginx/conf.d/

Expand Down

0 comments on commit ce08de5

Please sign in to comment.