CHORE(otel-operator): schedule on master node

- Add tolerations and nodeSelector to run operator on control-plane node
This commit is contained in:
2026-01-10 00:55:46 +09:00
parent 9e87e6fbcb
commit 507395aca7

View File

@@ -39,3 +39,12 @@ kubeRBACProxy:
requests:
cpu: 5m
memory: 32Mi
# Schedule on master node
tolerations:
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
nodeSelector:
node-role.kubernetes.io/control-plane: "true"