From 370ecfd0911cc1cbbe06c1db9cbe0182263a2d1d Mon Sep 17 00:00:00 2001 From: Sergey Bondarev Date: Fri, 1 Oct 2021 18:37:19 +0300 Subject: [PATCH] change some docker image from docker hub ro quay --- practice/10.oneshot-tasks/1.job/job.yaml | 2 +- practice/10.oneshot-tasks/2.cronjob/cronjob.yaml | 2 +- practice/2.application-abstractions/1.pod/pod.yaml | 2 +- practice/2.application-abstractions/2.replicaset/pod.yaml | 2 +- .../2.application-abstractions/2.replicaset/replicaset.yaml | 2 +- .../2.application-abstractions/3.deployment/deployment.yaml | 2 +- .../4.resources/deployment-with-resources.yaml | 2 +- .../4.saving-configurations/1.env/deployment-with-env-cm.yaml | 2 +- practice/4.saving-configurations/1.env/deployment-with-env.yaml | 2 +- .../2.secret/deployment-with-secret.yaml | 2 +- .../3.configmap/deployment-with-configmap.yaml | 2 +- .../4.downward/deployment-with-downward-api.yaml | 2 +- practice/5.saving-data/1.hostpath/deployment.yaml | 2 +- practice/5.saving-data/2.emptydir/deployment.yaml | 2 +- .../7.network-abstractions/1.probes/deployment-with-stuff.yaml | 2 +- .../2.ingress-and-services/app/deployment-with-configmap.yaml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/practice/10.oneshot-tasks/1.job/job.yaml b/practice/10.oneshot-tasks/1.job/job.yaml index 06623ae..34cbd9e 100644 --- a/practice/10.oneshot-tasks/1.job/job.yaml +++ b/practice/10.oneshot-tasks/1.job/job.yaml @@ -10,7 +10,7 @@ spec: spec: containers: - name: hello - image: busybox + image: quay.io/prometheus/busybox args: - /bin/sh - -c diff --git a/practice/10.oneshot-tasks/2.cronjob/cronjob.yaml b/practice/10.oneshot-tasks/2.cronjob/cronjob.yaml index 3c1c9be..93a620e 100644 --- a/practice/10.oneshot-tasks/2.cronjob/cronjob.yaml +++ b/practice/10.oneshot-tasks/2.cronjob/cronjob.yaml @@ -14,7 +14,7 @@ spec: spec: containers: - name: hello - image: busybox + image: quay.io/prometheus/busybox args: - /bin/sh - -c diff --git a/practice/2.application-abstractions/1.pod/pod.yaml b/practice/2.application-abstractions/1.pod/pod.yaml index ebe9dd0..82a57b9 100644 --- a/practice/2.application-abstractions/1.pod/pod.yaml +++ b/practice/2.application-abstractions/1.pod/pod.yaml @@ -6,7 +6,7 @@ metadata: name: my-pod spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/2.application-abstractions/2.replicaset/pod.yaml b/practice/2.application-abstractions/2.replicaset/pod.yaml index 49c1854..f0877f7 100644 --- a/practice/2.application-abstractions/2.replicaset/pod.yaml +++ b/practice/2.application-abstractions/2.replicaset/pod.yaml @@ -6,7 +6,7 @@ metadata: name: my-pod spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/2.application-abstractions/2.replicaset/replicaset.yaml b/practice/2.application-abstractions/2.replicaset/replicaset.yaml index ec868da..f9cb72a 100644 --- a/practice/2.application-abstractions/2.replicaset/replicaset.yaml +++ b/practice/2.application-abstractions/2.replicaset/replicaset.yaml @@ -15,7 +15,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/2.application-abstractions/3.deployment/deployment.yaml b/practice/2.application-abstractions/3.deployment/deployment.yaml index acc1a80..c5838ef 100644 --- a/practice/2.application-abstractions/3.deployment/deployment.yaml +++ b/practice/2.application-abstractions/3.deployment/deployment.yaml @@ -15,7 +15,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/2.application-abstractions/4.resources/deployment-with-resources.yaml b/practice/2.application-abstractions/4.resources/deployment-with-resources.yaml index 188ae7c..7e48f53 100644 --- a/practice/2.application-abstractions/4.resources/deployment-with-resources.yaml +++ b/practice/2.application-abstractions/4.resources/deployment-with-resources.yaml @@ -15,7 +15,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/4.saving-configurations/1.env/deployment-with-env-cm.yaml b/practice/4.saving-configurations/1.env/deployment-with-env-cm.yaml index 0c34655..415a756 100644 --- a/practice/4.saving-configurations/1.env/deployment-with-env-cm.yaml +++ b/practice/4.saving-configurations/1.env/deployment-with-env-cm.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx env: - name: TEST diff --git a/practice/4.saving-configurations/1.env/deployment-with-env.yaml b/practice/4.saving-configurations/1.env/deployment-with-env.yaml index 4afc7ba..4232121 100644 --- a/practice/4.saving-configurations/1.env/deployment-with-env.yaml +++ b/practice/4.saving-configurations/1.env/deployment-with-env.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx env: - name: TEST diff --git a/practice/4.saving-configurations/2.secret/deployment-with-secret.yaml b/practice/4.saving-configurations/2.secret/deployment-with-secret.yaml index 6fe23fa..bc8f6aa 100644 --- a/practice/4.saving-configurations/2.secret/deployment-with-secret.yaml +++ b/practice/4.saving-configurations/2.secret/deployment-with-secret.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx envFrom: - configMapRef: diff --git a/practice/4.saving-configurations/3.configmap/deployment-with-configmap.yaml b/practice/4.saving-configurations/3.configmap/deployment-with-configmap.yaml index cd7c667..d8d0d4f 100644 --- a/practice/4.saving-configurations/3.configmap/deployment-with-configmap.yaml +++ b/practice/4.saving-configurations/3.configmap/deployment-with-configmap.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/4.saving-configurations/4.downward/deployment-with-downward-api.yaml b/practice/4.saving-configurations/4.downward/deployment-with-downward-api.yaml index b85abe7..0ad31d4 100644 --- a/practice/4.saving-configurations/4.downward/deployment-with-downward-api.yaml +++ b/practice/4.saving-configurations/4.downward/deployment-with-downward-api.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx env: - name: TEST diff --git a/practice/5.saving-data/1.hostpath/deployment.yaml b/practice/5.saving-data/1.hostpath/deployment.yaml index b1ab060..43fc12f 100644 --- a/practice/5.saving-data/1.hostpath/deployment.yaml +++ b/practice/5.saving-data/1.hostpath/deployment.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/5.saving-data/2.emptydir/deployment.yaml b/practice/5.saving-data/2.emptydir/deployment.yaml index 9400ddd..263081d 100644 --- a/practice/5.saving-data/2.emptydir/deployment.yaml +++ b/practice/5.saving-data/2.emptydir/deployment.yaml @@ -19,7 +19,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/7.network-abstractions/1.probes/deployment-with-stuff.yaml b/practice/7.network-abstractions/1.probes/deployment-with-stuff.yaml index 5d91f23..e727b25 100644 --- a/practice/7.network-abstractions/1.probes/deployment-with-stuff.yaml +++ b/practice/7.network-abstractions/1.probes/deployment-with-stuff.yaml @@ -20,7 +20,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80 diff --git a/practice/7.network-abstractions/2.ingress-and-services/app/deployment-with-configmap.yaml b/practice/7.network-abstractions/2.ingress-and-services/app/deployment-with-configmap.yaml index 9b3603c..58e8bc8 100644 --- a/practice/7.network-abstractions/2.ingress-and-services/app/deployment-with-configmap.yaml +++ b/practice/7.network-abstractions/2.ingress-and-services/app/deployment-with-configmap.yaml @@ -18,7 +18,7 @@ spec: app: my-app spec: containers: - - image: nginx:1.12 + - image: quay.io/testing-farm/nginx:1.12 name: nginx ports: - containerPort: 80