REFACTOR(repo): standardize taint to control-plane

- Change node-role.kubernetes.io/master to control-plane
- Update vpa, goldilocks, kube-state-metrics tolerations
- Remove deprecated master taint from promtail
This commit is contained in:
2026-01-08 19:17:34 +09:00
parent 7ed4d69c51
commit 735166fc9c
4 changed files with 13 additions and 16 deletions

View File

@@ -14,14 +14,14 @@ resources:
limits:
memory: 150Mi
# Schedule on master node
# Schedule on control-plane node
nodeSelector:
node-role.kubernetes.io/master: "true"
node-role.kubernetes.io/control-plane: "true"
tolerations:
- key: node-role.kubernetes.io/master
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoExecute
effect: NoSchedule
service:
type: ClusterIP