Last active
July 26, 2021 05:27
-
-
Save AlvinLaiPro/1ab71713d8b19b7347d7788eb4e2b140 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/v1beta1 | |
| kind: Ingress | |
| metadata: | |
| name: example-ingress | |
| annotations: | |
| nginx.ingress.kubernetes.io/rewrite-target: /$1 | |
| spec: | |
| rules: | |
| - host: hello-world.info | |
| http: | |
| paths: | |
| - path: / | |
| backend: | |
| serviceName: test | |
| servicePort: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment