Ingress config file sample
--- | |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: sandbox | |
namespace: default | |
annotations: | |
kubernetes.io/ingress.class: traefik | |
spec: | |
rules: | |
- host: jira-sandbox.mydomain.com | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: jira | |
servicePort: 8080 | |
- host: confluence-sandbox.mydomain.com | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: confluence | |
servicePort: 8090 | |
- path: /synchrony | |
backend: | |
serviceName: confluence | |
servicePort: 8091 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment