24 lines
851 B
Markdown
24 lines
851 B
Markdown
# Futureporn Helm charts
|
|
|
|
These charts define the bulk of Futureporn's Kubernetes (k8s) payload. (Some of the infrastrucutre-specific payload is at `<PROJECT_ROOT>/flux/`)
|
|
In production, Flux CD deploys these charts into the k8s cluster.
|
|
|
|
|
|
## development
|
|
|
|
We are using a local Helm charts instead of using Tilt's `helm_remote` because that command makes the Tilt builds Hella slow.
|
|
|
|
We override default values in the parent folder.
|
|
|
|
/charts/postgresql/postgresql/values.yaml
|
|
/charts/postgresql/values-overrides.yaml
|
|
|
|
### postgresql
|
|
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami --force-update
|
|
helm pull bitnami/postgresql --untar --destination ./charts/postgresql
|
|
|
|
### cert-manager
|
|
|
|
helm repo add jetstack https://charts.jetstack.io --force-update
|
|
helm pull jetstack/cert-manager --untar --destination ./charts/cert-manager |