Last active
July 28, 2019 15:57
-
-
Save canhtran/6a01860dd2ab493ff68d4b6cf572655a to your computer and use it in GitHub Desktop.
data-devops-medium blog
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: titanic-ingress | |
annotations: | |
nginx.ingress.kubernetes.io/rewrite-target: / | |
nginx.ingress.kubernetes.io/ssl-redirect: "false" | |
spec: | |
rules: | |
- http: | |
paths: | |
- path: / | |
backend: | |
serviceName: titanic-app | |
servicePort: 5000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment