25 lines
976 B
YAML
25 lines
976 B
YAML
# Keep at least 1 web pod up during voluntary disruptions (node drain, upgrade).
|
|
# Pairs with replicaCount: 2 so a drain can evict one pod while the other serves.
|
|
#
|
|
# Selector verified against live forteapp-chart deployments (mcp10x, argocd-mcp):
|
|
# the chart's pod selector is {app.kubernetes.io/instance, app.kubernetes.io/name,
|
|
# component: app} where instance/name == the ArgoCD Application (Helm release) name.
|
|
# Using all three labels also disambiguates the web pods from the forte-drop-mcp
|
|
# deployment that shares the forte-drop namespace (its instance/name == forte-drop-mcp).
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: forte-drop-web
|
|
namespace: forte-drop
|
|
labels:
|
|
app.kubernetes.io/name: forte-drop
|
|
app.kubernetes.io/part-of: apps
|
|
app.kubernetes.io/managed-by: argocd
|
|
spec:
|
|
minAvailable: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/instance: forte-drop
|
|
app.kubernetes.io/name: forte-drop
|
|
component: app
|