Created
January 11, 2022 15:03
-
-
Save vamsijakkula/bb0110fb66d85a6b3fb4e3e181ae8f50 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: networking.k8s.io/v1 | |
kind: Ingress | |
metadata: | |
name: hello-whale | |
annotations: | |
nginx.ingress.kubernetes.io/rewrite-target: /$1 | |
kubernetes.io/ingress.class: "nginx" | |
cert-manager.io/issuer: "letsencrypt-prod" | |
spec: | |
tls: | |
- hosts: | |
- bf40-122-169-232-77.ngrok.io | |
secretName: bf40-122-169-232-77.ngrok.io | |
rules: | |
- host: bf40-122-169-232-77.ngrok.io | |
http: | |
paths: | |
- path: /blue/(.*) | |
pathType: Prefix | |
backend: | |
service: | |
name: hello-blue-whale-svc | |
port: | |
number: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment