Skip to content

Commit

Permalink
Use tagged images in e2e tests to not trigger docker.com rate limit (#…
Browse files Browse the repository at this point in the history
…1499)

Kubernetes uses imagePullPolicy: Always for images with latest or no
tag, which can trigger docker.com rate limits if one runs the e2e tests
too often.

Signed-off-by: Andreas Gerstmayr <agerstmayr@redhat.com>
  • Loading branch information
andreasgerstmayr authored Feb 23, 2023
1 parent eceb6ea commit 0067c35
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ spec:
spec:
containers:
- name: myapp
image: docker.io/avadhutp123/aspnetapp:latest # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
image: docker.io/avadhutp123/aspnetapp@sha256:d2e8d3415f6f12efae0369aa0a9777a58583841fb133f33e10a73adb9fb392da # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ spec:
spec:
containers:
- name: myapp
image: docker.io/avadhutp123/aspnetapp:latest # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
image: docker.io/avadhutp123/aspnetapp@sha256:d2e8d3415f6f12efae0369aa0a9777a58583841fb133f33e10a73adb9fb392da # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
2 changes: 1 addition & 1 deletion tests/e2e/instrumentation-dotnet/01-install-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ spec:
fsGroup: 2000
containers:
- name: myapp
image: docker.io/avadhutp123/aspnetapp:latest # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
image: docker.io/avadhutp123/aspnetapp@sha256:d2e8d3415f6f12efae0369aa0a9777a58583841fb133f33e10a73adb9fb392da # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/pavolloffay/spring-petclinic:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/pavolloffay/spring-petclinic:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/anuraaga/express-hello-world:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/anuraaga/express-hello-world:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/anuraaga/flask-hello-world:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ spec:
- name: myapp
image: ghcr.io/anuraaga/flask-hello-world:latest
- name: myrabbit
image: rabbitmq
image: rabbitmq:3

0 comments on commit 0067c35

Please sign in to comment.