31 lines
1004 B
YAML
31 lines
1004 B
YAML
# values-combined.yaml
|
|
credentials:
|
|
useSecret: false # Secrets y BSLs los aplicas tú por YAML (como ya hiciste)
|
|
|
|
configuration:
|
|
features: ""
|
|
backupStorageLocation: [] # ninguno desde Helm (los gestionas por YAML)
|
|
defaultVolumesToFsBackup: true # copia datos de PV vía node-agent/Kopia al BSL
|
|
|
|
# Dejamos SOLO el plugin de AWS; el CSI externo se quita (viene integrado en Velero 1.16)
|
|
initContainers:
|
|
- name: velero-plugin-for-aws
|
|
image: velero/velero-plugin-for-aws:v1.9.0
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- name: plugins
|
|
mountPath: /target
|
|
|
|
# **activar** el node-agent (DaemonSet) y darle tolerations "catch-all"
|
|
deployNodeAgent: true
|
|
nodeAgent:
|
|
podConfig:
|
|
tolerations:
|
|
- key: "node-role.kubernetes.io/master"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|
|
- key: "node-role.kubernetes.io/control-plane"
|
|
operator: "Exists"
|
|
effect: "NoSchedule"
|
|
- operator: "Exists" # tolera cualquier otro taint
|