mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-19 04:49:19 +00:00
- Explain ingress resources - Show how to deploy Traefik - Use hostNetwork in the process - Explain taints and tolerations while we're here
15 lines
233 B
YAML
15 lines
233 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: cheddar
|
|
spec:
|
|
rules:
|
|
- host: cheddar.A.B.C.D.nip.io
|
|
http:
|
|
paths:
|
|
- path: /
|
|
backend:
|
|
serviceName: cheddar
|
|
servicePort: 80
|
|
|