Skip to content

Instantly share code, notes, and snippets.

@caussourd
Created December 5, 2016 11:05
Show Gist options
  • Save caussourd/6df65c305b7f8256dcc9d97cdc8eebd7 to your computer and use it in GitHub Desktop.
Save caussourd/6df65c305b7f8256dcc9d97cdc8eebd7 to your computer and use it in GitHub Desktop.
Ingress
kind: Ingress
metadata:
name: nginx-ingress
spec:
rules:
- host: website1.com
http:
paths:
- backend:
serviceName: website1
servicePort: 80
- host: website2.com
http:
paths:
- backend:
serviceName: website2
servicePort: 80
- host: website3.com
http:
paths:
- backend:
serviceName: website3
servicePort: 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment