25 lines
542 B
YAML
25 lines
542 B
YAML
# PodDisruptionBudgets for stateful and gateway workloads.
|
|
# Ensures at least 1 pod remains available during voluntary disruptions (node drains, upgrades).
|
|
---
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: litellm-pdb
|
|
namespace: ai-core
|
|
spec:
|
|
minAvailable: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: litellm
|
|
---
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: ollama-pdb
|
|
namespace: ai-core
|
|
spec:
|
|
minAvailable: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: ollama
|