Hi,
Need to pass custom annotations to Postgres pods so that velero backup tool could do full backups (including storage)
One finding, if add in crd “pgclusters.pg.percona.com
” required annotation line it will do what is required
k get pgclusters.pg.percona.com test-db-pg-db -oyaml|grep global -A 3
global:
backup.velero.io/backup-volumes: pgdata
keep-backups: "false"
keep-data: "true"
// Pods are immediate restarted with annotations included
k get pod pod-name -oyaml |grep annotations: -A 1
annotations:
backup.velero.io/backup-volumes: pgdata
Please advise how to add annotations using helm deployment
Helm charts used
Thanks in advance