2016-02-08 20:57:32 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ReplicationController
|
|
|
|
metadata:
|
|
|
|
name: traefik-ingress-controller
|
|
|
|
labels:
|
|
|
|
k8s-app: traefik-ingress-lb
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
k8s-app: traefik-ingress-lb
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
k8s-app: traefik-ingress-lb
|
|
|
|
name: traefik-ingress-lb
|
|
|
|
spec:
|
|
|
|
terminationGracePeriodSeconds: 60
|
|
|
|
containers:
|
2016-06-02 09:37:51 +00:00
|
|
|
- image: traefik
|
2016-02-08 20:57:32 +00:00
|
|
|
name: traefik-ingress-lb
|
|
|
|
imagePullPolicy: Always
|
|
|
|
ports:
|
|
|
|
- containerPort: 80
|
|
|
|
hostPort: 80
|
|
|
|
- containerPort: 443
|
|
|
|
hostPort: 443
|
2016-04-25 14:56:06 +00:00
|
|
|
- containerPort: 8080
|
2016-02-08 20:57:32 +00:00
|
|
|
args:
|
2016-04-25 14:56:06 +00:00
|
|
|
- --web
|
2016-02-08 20:57:32 +00:00
|
|
|
- --kubernetes
|
|
|
|
- --logLevel=DEBUG
|