1
0
Fork 0
mirror of https://gitlab.com/shouptech/flux.git synced 2026-02-03 15:59:45 +00:00

Add echoserver ingress

This commit is contained in:
Emma 2020-02-01 08:37:28 -07:00
parent 33797b562e
commit b15f7d76b8
No known key found for this signature in database
GPG key ID: 68434BFE85360755

View file

@ -28,5 +28,18 @@ spec:
app: echoserver app: echoserver
ports: ports:
- protocol: TCP - protocol: TCP
port: 80 port: 8080
targetPort: 8080 targetPort: 8080
---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: echoserver
spec:
rules:
- http:
paths:
- path: /echo
backend:
serviceName: echoserver
servicePort: 8080