Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

add default tolerations for addons-manager package #3560

Merged
merged 1 commit into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/addons-manager/bundle/config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ tanzuAddonsManager:
hostNetwork: true
priorityClassName: null
nodeSelector: null
tolerations: []
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
webhookServerPort: 9865
healthzPort: 18316
clusterDeleteTimeout: "10m"
Expand Down
8 changes: 7 additions & 1 deletion packages/framework/bundle/config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ addonsManagerPackageValues:
hostNetwork: true
priorityClassName: system-cluster-critical
nodeSelector: null
tolerations: []
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
webhookServerPort: 9865
healthzPort: 18316
clusterDeleteTimeout: "10m"
Expand Down
8 changes: 7 additions & 1 deletion packages/tkg/bundle/config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ frameworkPackage:
hostNetwork: true
priorityClassName: system-cluster-critical
nodeSelector: null
tolerations: []
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
- effect: NoSchedule
key: node-role.kubernetes.io/control-plane
webhookServerPort: 9865
healthzPort: 18316
clusterDeleteTimeout: "10m"
Expand Down