Skip to content

Commit

Permalink
verify service port names in e2e test
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Bongartz <[email protected]>
  • Loading branch information
frzifus committed Oct 20, 2022
1 parent 92dd584 commit c3ef946
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions tests/e2e/miscellaneous/istio/03-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,65 @@ spec:
- name: myapp
- name: jaeger-agent
- name: istio-proxy
---
apiVersion: v1
kind: Service
metadata:
name: simplest-collector-headless
spec:
ports:
- name: http-zipkin
port: 9411
protocol: TCP
targetPort: 9411
- name: grpc-model-proto
port: 14250
protocol: TCP
targetPort: 14250
- name: http-c-tchan-trft
port: 14267
protocol: TCP
targetPort: 14267
- name: http-c-binary-trft
port: 14268
protocol: TCP
targetPort: 14268
- name: grpc-otlp
port: 4317
protocol: TCP
targetPort: 4317
- name: http-otlp
port: 4318
protocol: TCP
targetPort: 4318
---
apiVersion: v1
kind: Service
metadata:
name: simplest-collector
spec:
ports:
- name: http-zipkin
port: 9411
protocol: TCP
targetPort: 9411
- name: grpc-model-proto
port: 14250
protocol: TCP
targetPort: 14250
- name: http-c-tchan-trft
port: 14267
protocol: TCP
targetPort: 14267
- name: http-c-binary-trft
port: 14268
protocol: TCP
targetPort: 14268
- name: grpc-otlp
port: 4317
protocol: TCP
targetPort: 4317
- name: http-otlp
port: 4318
protocol: TCP
targetPort: 4318

0 comments on commit c3ef946

Please sign in to comment.