Unable to use own PVC for postgres #598
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The helm chart seems to insist on creating it's own PVC vs using one that I've created previously - I suspect I'm doing something wrong in the values.yaml file:
Values.yaml
POD DESCRIPTION:
Volumes:
data:
Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace)
ClaimName: data-gitea-postgresql-0
ReadOnly: false
Try
existingClaim
(cee371d106/bitnami/postgresql/values.yaml (L663)
)On a fresh deployment
primary.persistence
should work, i.e. in subsequent updates the persistent volume should be re-used then without having to useexistingClaim
. Did you by chance enabled persistence after the initial deployment? The existingClaimName
of "data-gitea-postgresql-0" suggests that as this is auto-generated one. If you define persistence after the first start, you need to useexistingClaim
then or wipe everything and start from scratch.Closing due to no reply.