Skip to content
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

chore: remove dockerhub images #1190

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
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
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
Loading