gitextract_apfpt_9c/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── issue.md ├── LICENSE.md ├── README.md ├── helm/ │ └── postgres/ │ ├── Chart.yaml │ ├── templates/ │ │ ├── NOTES.txt │ │ ├── _azure.tpl │ │ ├── _gcs.tpl │ │ ├── _s3.tpl │ │ ├── pgbackrest-secret.yaml │ │ └── postgres.yaml │ └── values.yaml └── kustomize/ ├── azure/ │ ├── .gitignore │ ├── azure.conf.example │ ├── kustomization.yaml │ └── postgres.yaml ├── certmanager/ │ ├── README.md │ ├── certman/ │ │ ├── ca-cert.yaml │ │ ├── ca-issuer.yaml │ │ ├── kustomization.yaml │ │ ├── selfsigned-clusterissuer.yaml │ │ └── selfsigned-issuer.yaml │ └── postgres/ │ ├── cert-repl.yaml │ ├── cert.yaml │ ├── kustomization.yaml │ └── postgres.yaml ├── gcs/ │ ├── .gitignore │ ├── gcs.conf │ ├── kustomization.yaml │ └── postgres.yaml ├── high-availability/ │ ├── ha-postgres.yaml │ └── kustomization.yaml ├── keycloak/ │ ├── keycloak.yaml │ ├── kustomization.yaml │ └── postgres.yaml ├── multi-backup-repo/ │ ├── .gitignore │ ├── azure.conf.example │ ├── gcs.conf │ ├── kustomization.yaml │ ├── postgres.yaml │ └── s3.conf.example ├── pgadmin/ │ ├── README.md │ ├── kustomization.yaml │ └── pgadmin.yaml ├── postgres/ │ ├── kustomization.yaml │ └── postgres.yaml └── s3/ ├── .gitignore ├── kustomization.yaml ├── postgres.yaml └── s3.conf.example