Created
July 3, 2024 03:44
-
-
Save acetousk/ded5e3ed5d7f75ebfe280a44f0ac82a9 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: kuard | |
annotations: {} | |
#cert-manager.io/issuer: "letsencrypt-staging" | |
spec: | |
ingressClassName: nginx | |
tls: | |
- hosts: | |
- test3.dmichaeljones.com | |
secretName: quickstart-example-tls | |
rules: | |
- host: test3.dmichaeljones.com | |
http: | |
paths: | |
- path: / | |
pathType: Prefix | |
backend: | |
service: | |
name: kuard | |
port: | |
number: 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment