Created
July 15, 2016 15:33
-
-
Save Chronojam/fd23939af3f209312a93317bdbdf3bc9 to your computer and use it in GitHub Desktop.
This file contains 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: "{{ name }}" | |
spec: | |
tls: | |
- secretName: {{ secretName }} | |
rules: | |
- host: {{ hostname }} # eg example.com | |
http: | |
paths: | |
- path: "/*" | |
backend: | |
serviceName: "{{ name }}" # whatever you called your service | |
servicePort: {{ port }} # the Port field to direct to on the service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment