From 2a0a239260e41d188c54e578b8883aa66b373802 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Wed, 31 Dec 2025 18:00:38 +0900 Subject: [PATCH] FEAT(vault): add master node toleration to Vault - Allows vault pods to run on master with NoExecute taint --- vault/helm-values.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vault/helm-values.yaml b/vault/helm-values.yaml index 8c852b9..a8f163b 100644 --- a/vault/helm-values.yaml +++ b/vault/helm-values.yaml @@ -72,6 +72,12 @@ server: type: ClusterIP port: 8200 + # Tolerations for master node + tolerations: + - key: "node-role.kubernetes.io/master" + operator: "Exists" + effect: "NoExecute" + # UI 활성화 ui: enabled: true