You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
400 B
19 lines
400 B
6 years ago
|
apiVersion: extensions/v1beta1
|
||
|
kind: Ingress
|
||
|
metadata:
|
||
|
name: example-ingress
|
||
|
annotations:
|
||
|
ingress.kubernetes.io/rewrite-target: /
|
||
|
spec:
|
||
|
rules:
|
||
|
- http:
|
||
|
paths:
|
||
|
- path: /apple
|
||
|
backend:
|
||
|
serviceName: apple-service
|
||
|
servicePort: 5678
|
||
|
- path: /banana
|
||
|
backend:
|
||
|
serviceName: banana-service
|
||
|
servicePort: 5678
|