From 8698780758eb56df61b70a9c0f993cd0d7a10abb Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Wed, 31 Dec 2025 17:57:44 +0900 Subject: [PATCH] FEAT(minio): add master node toleration to MinIO - minio-0 disk is on master node, requires toleration for NoExecute taint - Allows minio-0 to schedule on master with taint --- minio/helm-values.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/minio/helm-values.yaml b/minio/helm-values.yaml index d6957af..cf172af 100644 --- a/minio/helm-values.yaml +++ b/minio/helm-values.yaml @@ -85,6 +85,12 @@ affinity: - minio topologyKey: kubernetes.io/hostname +# Tolerations for master node (minio-0 runs on master) +tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoExecute" + # Prometheus metrics metrics: serviceMonitor: