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

fix: postgresql subchart #112

Merged
merged 4 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:password@openfga-postgresql.default.svc.cluster.local: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
Loading