Created
May 15, 2020 18:34
-
-
Save parj/863710167a8863bb35974ccecc0bdb3e to your computer and use it in GitHub Desktop.
Kibana ingress configuration on local kubernetes cluster
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: kibana-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx | |
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | |
nginx.ingress.kubernetes.io/secure-backends: "true" | |
nginx.ingress.kubernetes.io/ssl-redirect: "false" | |
nginx.ingress.kubernetes.io/rewrite-target: /$1 | |
spec: | |
rules: | |
- host: mysterious-grass-savages.github | |
http: | |
paths: | |
- path: /kibana/?(.*) | |
backend: | |
serviceName: quickstart-kb-http | |
servicePort: 5601 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment