Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions deploy/cloud/helm/platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,16 @@ etcd:
# Node tolerations for etcd pods (allows scheduling on specific nodes)
tolerations: []

# Pod Disruption Budget configuration
# If replicas is 1, then need minAvailable to be 0 to enable node draining
pdb:
# Enable/disable a Pod Disruption Budget creation
create: true
# Minimum number/percentage of pods that should remain scheduled
minAvailable: 0
# Maximum number/percentage of pods that may be made unavailable
maxUnavailable: ""

# NATS configuration - messaging system for operator communication
nats:
# -- Whether to enable NATS deployment, disable if you want to use an external NATS instance. For complete configuration options, see: https://github.com/nats-io/k8s/tree/main/helm/charts/nats , all nats settings should be prefixed with "nats."
Expand Down
Loading