From 119e86d4821e42f73cc6f580169793de180adbfd Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 13:14:08 +0900 Subject: [PATCH] PERF(vault): add high-priority class - Add high-priority PriorityClass - Keep tolerations for HA across all nodes (3 replicas) --- vault/helm-values.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vault/helm-values.yaml b/vault/helm-values.yaml index e818234..11426ec 100644 --- a/vault/helm-values.yaml +++ b/vault/helm-values.yaml @@ -72,12 +72,15 @@ server: type: ClusterIP port: 8200 - # Tolerations for control-plane node + # Tolerations for control-plane node (keep for 3-replica HA) tolerations: - key: "node-role.kubernetes.io/control-plane" operator: "Exists" effect: "NoSchedule" + # High priority for critical secrets management + priorityClassName: high-priority + # UI 활성화 ui: enabled: true