Created
December 5, 2016 11:05
-
-
Save caussourd/6df65c305b7f8256dcc9d97cdc8eebd7 to your computer and use it in GitHub Desktop.
Ingress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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