mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
87a43c69e1
Solution: Set priorityClassName to system-node-critical of traefik, metrics-server, local storage and coredns deployment Signed-off-by: transhapHigsn <fet.prashantsingh@gmail.com>
27 lines
650 B
YAML
27 lines
650 B
YAML
apiVersion: helm.cattle.io/v1
|
|
kind: HelmChart
|
|
metadata:
|
|
name: traefik
|
|
namespace: kube-system
|
|
spec:
|
|
chart: https://%{KUBERNETES_API}%/static/charts/traefik-1.81.0.tgz
|
|
valuesContent: |-
|
|
rbac:
|
|
enabled: true
|
|
ssl:
|
|
enabled: true
|
|
metrics:
|
|
prometheus:
|
|
enabled: true
|
|
kubernetes:
|
|
ingressEndpoint:
|
|
useDefaultPublishedService: true
|
|
priorityClassName: "system-cluster-critical"
|
|
image: "rancher/library-traefik"
|
|
tolerations:
|
|
- key: "CriticalAddonsOnly"
|
|
operator: "Exists"
|
|
- key: "node-role.kubernetes.io/master"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|