Last active
October 16, 2019 15:51
-
-
Save richardsonlima/0dc79bbded715c9d09006a00a6f038e5 to your computer and use it in GitHub Desktop.
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: v1 | |
kind: Service | |
metadata: | |
name: traefik-web-ui | |
namespace: kube-system | |
spec: | |
selector: | |
k8s-app: traefik-ingress-lb | |
ports: | |
- name: web | |
port: 80 | |
targetPort: 8080 | |
--- | |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: traefik-web-ui | |
namespace: kube-system | |
spec: | |
rules: | |
- host: traefik-ui-k8s-dev-spo.int.company.io | |
http: | |
paths: | |
- path: / | |
backend: | |
serviceName: traefik-web-ui | |
servicePort: web |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment