Files
devops-directive-docker-course/12-deploying-containers/kubernetes/traefik-values

30 lines
759 B
Plaintext

# Taken from CIVO marketplace values
deployment:
kind: DaemonSet
rbac:
enabled: true
ports:
websecure:
tls:
enabled: true
podAnnotations:
prometheus.io/port: "8082"
prometheus.io/scrape: "true"
providers:
kubernetesIngress:
publishedService:
enabled: true
priorityClassName: "system-cluster-critical"
# Rancher didn't have the latest v2.9.6 image associate with the latest helm chart
# Using the default dockerhub traefik image instead
# image:
# name: "rancher/mirrored-library-traefik"
tolerations:
- key: "CriticalAddonsOnly"
operator: "Exists"
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"
- key: "node-role.kubernetes.io/master"
operator: "Exists"
effect: "NoSchedule"