Created
July 4, 2020 18:40
-
-
Save suhas86/525a846b0d368ebbc14ac3f73563bad1 to your computer and use it in GitHub Desktop.
This file contains 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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: ingress-service | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
nginx.ingress.kubernetes.io/use-regex: "true" | |
spec: | |
rules: | |
- host: quiz.com | |
http: | |
paths: | |
- path: /api/users/?(.*) | |
backend: | |
serviceName: auth-srv | |
servicePort: 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment