Skip to content

Instantly share code, notes, and snippets.

@richardsonlima
Last active October 16, 2019 15:51
Show Gist options
  • Save richardsonlima/0dc79bbded715c9d09006a00a6f038e5 to your computer and use it in GitHub Desktop.
Save richardsonlima/0dc79bbded715c9d09006a00a6f038e5 to your computer and use it in GitHub Desktop.
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