forked from open-zaak/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using separate chart with subcharts, updated documentation.
Fixes open-zaak#33
- Loading branch information
1 parent
757308c
commit f20b116
Showing
4 changed files
with
63 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: v2 | ||
name: open-zaak-postgres-redis | ||
description: Productiewaardige API's voor Zaakgericht Werken | ||
|
||
type: application | ||
version: 0.8.1 | ||
|
||
dependencies: | ||
- name: open-zaak | ||
version: ~0.8.1 | ||
repository: file://../open-zaak | ||
tags: | ||
- open-zaak | ||
- name: postgresql | ||
version: ~15.5.5 | ||
repository: https://charts.bitnami.com/bitnami | ||
tags: | ||
- postgresql | ||
- name: redis | ||
version: ~19.5.2 | ||
repository: https://charts.bitnami.com/bitnami | ||
tags: | ||
- redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Open Zaak chart including PostgreSQL and Redis | ||
|
||
The Helm chart installs Open Zaak and by the following dependencies using subcharts: | ||
|
||
- [PostgreSQL](https://github.com/bitnami/charts/tree/master/bitnami/postgresql) | ||
- [Redis](https://github.com/bitnami/charts/tree/master/bitnami/redis) | ||
|
||
## Installation | ||
|
||
First configure the Helm repository: | ||
|
||
```bash | ||
helm repo add open-zaak https://open-zaak.github.io/charts/ | ||
helm repo update | ||
``` | ||
|
||
Install the Helm chart with: | ||
|
||
```bash | ||
helm install open-zaak open-zaak/open-zaak-postgres-redis \ | ||
--set "open-zaak.settings.allowedHosts=open-zaak.gemeente.nl" \ | ||
--set "open-zaak.ingress.enabled=true" \ | ||
--set "open-zaak.ingress.hosts={open-zaak.gemeente.nl}" | ||
``` | ||
|
||
:warning: The default settings are unsafe for production usage. Configure proper secrets, enable persistency and consider High Availability (HA) for the database and the application. | ||
|
||
**Because we are using these charts as dependencies, all values need to be prefixed with the name of the chart.** | ||
|
||
| Chart | Values | More Information | | ||
|------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------------------------| | ||
| open-zaak | [values.yaml](https://github.com/open-zaak/charts/blob/main/charts/open-zaak/values.yaml) | [Chart](https://github.com/open-zaak/charts/tree/main/charts/open-zaak) | | ||
| postgresql | [values.yaml](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml) | [Artifact Hub](https://artifacthub.io/packages/helm/bitnami/postgresql) | | ||
| redis | [values.yaml](https://github.com/bitnami/charts/blob/main/bitnami/redis/values.yaml) | [Artifact Hub](https://artifacthub.io/packages/helm/bitnami/redis) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters