Skip to content

Commit

Permalink
update dotnet container image
Browse files Browse the repository at this point in the history
  • Loading branch information
bpschmitt committed Apr 10, 2024
1 parent 318336e commit 95899e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions demo/apps/dotnet_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ spec:
spec:
containers:
- name: aspnetapp
image: docker.io/avadhutp123/aspnetapp:latest # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
image: ghcr.io/open-telemetry/opentelemetry-operator/e2e-test-app-dotnet:main # source code of the application: https://github.com/dotnet/dotnet-docker/tree/main/samples/aspnetapp
env:
- name: ASPNETCORE_URLS
value: 'http://+:4000'
value: 'http://+:8000'
ports:
- containerPort: 4000
- containerPort: 8000
---
apiVersion: v1
kind: Service
Expand All @@ -32,6 +32,6 @@ spec:
type: ClusterIP
ports:
- port: 80
targetPort: 4000
targetPort: 8000
selector:
app: aspnetapp
app: aspnetapp

0 comments on commit 95899e1

Please sign in to comment.