Created
October 21, 2021 12:52
-
-
Save nurlanf/499de200146cf4cf47abf39557f07afa 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: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: myservice-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
spec: | |
rules: | |
- host: my.example.com | |
http: | |
paths: | |
- backend: | |
serviceName: myservice | |
servicePort: 80 | |
path: / | |
tls: | |
- hosts: | |
- '*.example.com' | |
- my.example.com | |
secretName: wildcard-example-com-tls | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment