FEAT(postgresql): add master node toleration

- to PostgreSQL
- Allows postgresql pods to run on master with NoExecute taint
- Required because PV is on master node
This commit is contained in:
2025-12-31 18:00:36 +09:00
parent 8698780758
commit e0143b153f

View File

@@ -68,6 +68,10 @@ spec:
# Affinity to spread replicas across nodes
affinity:
podAntiAffinityType: required
tolerations:
- key: "node-role.kubernetes.io/master"
operator: "Exists"
effect: "NoExecute"
# Enable superuser access
enableSuperuserAccess: true