Last active
March 13, 2019 09:44
-
-
Save afreeland/7d85e483eb1795bb47af42f8a1115a4d to your computer and use it in GitHub Desktop.
Ingress TLS bare-metal Kubernetes
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: | |
annotations: | |
nginx.ingress.kubernetes.io/proxy-connect-timeout: "21600000" | |
nginx.ingress.kubernetes.io/proxy-read-timeout: "21600000" | |
nginx.ingress.kubernetes.io/proxy-send-timeout: "21600000" | |
nginx.ingress.kubernetes.io/rewrite-target: / | |
name: ds-ingress | |
namespace: default | |
spec: | |
tls: | |
- host: | |
- datasuite.me | |
secretName: our-tls | |
rules: | |
- host: datasuite.me | |
http: | |
paths: | |
- backend: | |
serviceName: mhs-api-prod | |
servicePort: 3100 | |
path: / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment