Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- kind: Deployment
- apiVersion: extensions/v1beta1
- metadata:
- namespace: default
- name: traefik
- labels:
- app: traefik
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: traefik
- template:
- metadata:
- labels:
- app: traefik
- spec:
- serviceAccountName: traefik-ingress-controller
- containers:
- - name: traefik
- image: traefik:v2.0.0-beta1-alpine
- ports:
- - name: https
- containerPort: 443
- hostPort: 443
- - name: dashboard
- containerPort: 8080
- hostPort: 8080
- args:
- - --entrypoints.https.Address=:443
- - --providers.kubernetescrd=true
- - --api.dashboard=true
- - --log.level=INFO
- - --global.sendanonymoususage=false
- - --global.checknewversion=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement