PERF(argocd): move to workers, add high priority

- Remove nodeSelector forcing control-plane placement
- Remove tolerations from ArgoCD and image-updater
- Add high-priority PriorityClass
This commit is contained in:
2026-01-10 13:14:07 +09:00
parent c9eb7e69f6
commit 52c66f51ae
2 changed files with 2 additions and 15 deletions

View File

@@ -17,9 +17,3 @@ resources:
memory: 64Mi memory: 64Mi
limits: limits:
memory: 64Mi memory: 64Mi
# Tolerations for control-plane node
tolerations:
- key: "node-role.kubernetes.io/control-plane"
operator: "Exists"
effect: "NoSchedule"

View File

@@ -6,15 +6,8 @@
# GLOBAL SETTINGS # GLOBAL SETTINGS
# ============================================================================= # =============================================================================
global: global:
# Deploy to control-plane node # High priority for critical GitOps infrastructure
nodeSelector: priorityClassName: high-priority
node-role.kubernetes.io/control-plane: "true"
# Tolerate control-plane taint
tolerations:
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
# ============================================================================= # =============================================================================
# CONFIGS (ConfigMaps) # CONFIGS (ConfigMaps)