1
0
Fork 0

Kubernetes user-guide

This commit is contained in:
Ed Robinson 2016-05-06 11:34:30 +01:00
parent 1c60f0b53b
commit d3aa056151
No known key found for this signature in database
GPG key ID: EC501FCA6421CCF0
8 changed files with 684 additions and 2 deletions

View file

@ -0,0 +1,23 @@
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: cheeses
annotations:
traefik.frontend.rule.type: pathprefixstrip
spec:
rules:
- host: cheeses.local
http:
paths:
- path: /stilton
backend:
serviceName: stilton
servicePort: http
- path: /cheddar
backend:
serviceName: cheddar
servicePort: http
- path: /wensleydale
backend:
serviceName: wensleydale
servicePort: http