-
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.
Merge pull request #8 from GPP-Woo/docs/helm-deploy
📝 Document minimal Helm installation steps
- Loading branch information
Showing
1 changed file
with
30 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,3 +1,32 @@ | ||
# Helm Charts | ||
|
||
TODO | ||
This repository contains the Helm charts for the invididual components and the umbrella | ||
chart for the full stack of components. | ||
|
||
The deployed components are: | ||
|
||
* GPP-App | ||
* GPP-Burgerportaal | ||
* GPP-Publicatiebank | ||
* Open Zaak | ||
|
||
## Requirements | ||
|
||
The requirements listed here are not included in the charts and you're responsible for | ||
provisioning them yourself. | ||
|
||
* PostgreSQL database (version 13 or higher, 16 (latest) is recommended) | ||
* An OpenID Connect identity provider for Single Sign On (optional) | ||
|
||
## Cheat sheet | ||
|
||
```bash | ||
helm repo add gpp-woo https://GPP-Woo.github.io/charts | ||
helm repo update | ||
helm install \ | ||
-f myvalues.yml \ | ||
my-gpp-woo \ | ||
gpp-woo/gpp-stack | ||
``` | ||
|
||
Assuming a values file ``myvalues.yml`` was created. |