From 507395aca7f6d5e800278bdb6c98a77f6daa2a59 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 00:55:46 +0900 Subject: [PATCH] CHORE(otel-operator): schedule on master node - Add tolerations and nodeSelector to run operator on control-plane node --- opentelemetry-operator/helm-values.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/opentelemetry-operator/helm-values.yaml b/opentelemetry-operator/helm-values.yaml index f5790c6..5e9c12b 100644 --- a/opentelemetry-operator/helm-values.yaml +++ b/opentelemetry-operator/helm-values.yaml @@ -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"