Skip to content

Commit

Permalink
fix: postgresql subchart (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-whit authored Mar 7, 2024
1 parent 5ea6fef commit 7f6c0c7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/openfga/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.13.3
digest: sha256:68e2cc3b60ae8e31f7749a5f1f3e7838660f6c0e2f0b40d9f5fa353afe880521
generated: "2023-12-01T15:06:50.541713+01:00"
digest: sha256:a152c0abc09cadc6a2158e237b67485b3177d1ed8ad9b7f0b64af300b4eb6e25
generated: "2024-03-07T16:13:52.695937-07:00"
4 changes: 2 additions & 2 deletions charts/openfga/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: openfga
description: A Kubernetes Helm chart for the OpenFGA project.

type: application
version: 0.1.38
version: 0.1.39
appVersion: "v1.5.0"

home: "https://openfga.github.io/helm-charts/charts/openfga"
Expand All @@ -19,7 +19,7 @@ dependencies:
- name: postgresql
version: "12.12.10"
repository: https://charts.bitnami.com/bitnami
condition: postgres.enabled
condition: postgresql.enabled
- name: mysql
version: "9.6.0"
repository: https://charts.bitnami.com/bitnami
Expand Down
2 changes: 1 addition & 1 deletion charts/openfga/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you do not already have a Postgres deployment, you can deploy OpenFGA with Po
$ helm install openfga openfga/openfga \
--set datastore.engine=postgres \
--set datastore.uri="postgres://postgres:[email protected]:5432/postgres?sslmode=disable" \
--set postgres.enabled=true \
--set postgresql.enabled=true \
--set postgresql.auth.postgresPassword=password \
--set postgresql.auth.database=postgres
```
Expand Down
2 changes: 1 addition & 1 deletion charts/openfga/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@
}
}
},
"postgres": {
"postgresql": {
"type": "object",
"properties": {
"enabled": {
Expand Down
4 changes: 2 additions & 2 deletions charts/openfga/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ datastore:
pullPolicy: Always
tag: "v2.0"

postgres:
## @param postgres.enabled enable the bitnami/postgresql subchart and deploy Postgres
postgresql:
## @param postgresql.enabled enable the bitnami/postgresql subchart and deploy Postgres
enabled: false

mysql:
Expand Down

0 comments on commit 7f6c0c7

Please sign in to comment.