Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Choose postgresql PVC size? #137

Open
sergiynesterenko90 opened this issue Dec 14, 2023 · 1 comment
Open

Choose postgresql PVC size? #137

sergiynesterenko90 opened this issue Dec 14, 2023 · 1 comment

Comments

@sergiynesterenko90
Copy link

I am deploying this helm chart on a self-managed cluster. The data-retool-postgresql-0 defaults to 8Gi. Is there any way to increase this value from the helm chart values?

I realize that this postgres instance isn't recommended for production, but it is sufficient for my current needs. I could manually increase the PVC with a kubectl edit, but I am deploying this chart in multiple locations so it would be nice to include the PVC spec in the initial deploy.

@Revocsid
Copy link

Postgresql is deployed with a sub chart based on the Bitnami chart, which can be found at : https://github.com/bitnami/charts/tree/main/bitnami/postgresql

All values contained within the .Values.postgresql are injected into this sub chart. Therefore, if you want to customize the size of the PVC for the postgres primary, you can do the following :

postgresql:
  enabled: true
  primary:
    persistence:
      size: 50Gi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants