-
Notifications
You must be signed in to change notification settings - Fork 86
fix(e2e): replace Docker Hub images with quay.io mirrors and remove curl dependency #2073
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
Changes from all commits
83d69a4
e6190fd
e30e59a
67b05d2
db48e27
93b80ca
2e66994
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -67,7 +67,7 @@ items: | |||||
| spec: | ||||||
| serviceAccountName: mongo-persistent-sa | ||||||
| containers: | ||||||
| - image: docker.io/library/mongo:7.0 | ||||||
| - image: quay.io/migtools/mongo:7.0.28 | ||||||
| imagePullPolicy: IfNotPresent | ||||||
| name: mongo | ||||||
| securityContext: | ||||||
|
|
@@ -122,7 +122,7 @@ items: | |||||
| timeoutSeconds: 5 | ||||||
| successThreshold: 1 | ||||||
| failureThreshold: 12 # 12x10sec = 2min before restart pod | ||||||
| - image: docker.io/curlimages/curl:8.5.0 | ||||||
| - image: registry.access.redhat.com/ubi9/ubi:latest | ||||||
| name: curl-tool | ||||||
|
||||||
| name: curl-tool | |
| name: debug-tool |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -80,7 +80,7 @@ items: | |||||
| spec: | ||||||
| serviceAccountName: mongo-persistent-sa | ||||||
| containers: | ||||||
| - image: docker.io/library/mongo:7.0 | ||||||
| - image: quay.io/migtools/mongo:7.0.28 | ||||||
| imagePullPolicy: IfNotPresent | ||||||
| name: mongo | ||||||
| securityContext: | ||||||
|
|
@@ -135,7 +135,7 @@ items: | |||||
| timeoutSeconds: 5 | ||||||
| successThreshold: 1 | ||||||
| failureThreshold: 12 # 12x10sec = 2min before restart pod | ||||||
| - image: docker.io/curlimages/curl:8.5.0 | ||||||
| - image: registry.access.redhat.com/ubi9/ubi:latest | ||||||
| name: curl-tool | ||||||
|
||||||
| name: curl-tool | |
| name: debug-tool |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -155,7 +155,7 @@ items: | |||||
| timeoutSeconds: 2 | ||||||
| successThreshold: 1 | ||||||
| failureThreshold: 40 # 40x30sec before restart pod | ||||||
| - image: docker.io/curlimages/curl:8.5.0 | ||||||
| - image: registry.access.redhat.com/ubi9/ubi:latest | ||||||
| name: curl-tool | ||||||
|
||||||
| name: curl-tool | |
| name: debug-tool |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -168,7 +168,7 @@ items: | |||||
| timeoutSeconds: 2 | ||||||
| successThreshold: 1 | ||||||
| failureThreshold: 40 # 40x30sec before restart pod | ||||||
| - image: docker.io/curlimages/curl:8.5.0 | ||||||
| - image: registry.access.redhat.com/ubi9/ubi:latest | ||||||
| name: curl-tool | ||||||
|
||||||
| name: curl-tool | |
| name: debug-tool |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -140,7 +140,7 @@ items: | |||||
| timeoutSeconds: 2 | ||||||
| successThreshold: 1 | ||||||
| failureThreshold: 40 # 40x30sec before restart pod | ||||||
| - image: docker.io/curlimages/curl:8.5.0 | ||||||
| - image: registry.access.redhat.com/ubi9/ubi:latest | ||||||
| name: curl-tool | ||||||
|
||||||
| name: curl-tool | |
| name: debug-tool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The container name is 'curl-tool' but it no longer uses the curl image and doesn't provide curl functionality. Consider renaming this container to something more generic like 'debug-tool' or 'utility-tool' to better reflect its purpose as a debugging sidecar.