Created
February 24, 2021 09:22
-
-
Save eyarz/9590df7a0f91bfc6bb720af1cf25a002 to your computer and use it in GitHub Desktop.
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
apiVersion: v1 | |
kind: Ingress | |
metadata: | |
name: test | |
spec: | |
rules: | |
- host: * # <-- this setup will forward all Ingress traffic to a single container | |
http: | |
paths: | |
- path: /foo | |
backend: | |
serviceName: s1 | |
servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment