FEAT(vault): add master node toleration to Vault

- Allows vault pods to run on master with NoExecute taint
This commit is contained in:
2025-12-31 18:00:38 +09:00
parent 114307fa4b
commit 2a0a239260

View File

@@ -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