Created
November 21, 2022 05:08
-
-
Save arn-ob/9192e90361d483e52a45814172cc7b02 to your computer and use it in GitHub Desktop.
Ingress Networking
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: elastic-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
kubernetes.io/tls-acme: "true" | |
nginx.ingress.kubernetes.io/proxy-ssl-verify: "false" | |
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | |
spec: | |
rules: | |
- host: hostname.domain.test | |
http: | |
paths: | |
- path: / | |
pathType: Prefix | |
backend: | |
service: | |
name: quickstart-kb-http | |
port: | |
number: 5601 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment