Helm must be installed to use the charts. Please refer to Helm's documentation to get started.
Once Helm has been set up correctly, add the repo as follows:
helm repo add platzio https://platzio.github.io/helm-charts
If you had already added this repo earlier, run helm repo update to retrieve
the latest versions of the packages. You can then run helm search repo platzio to see the charts.
-
Create a namespace, for example:
kubectl create ns platzio
-
Create a secret containing credentials for connecting to a PostgreSQL database:
kubectl create secret generic -n platzio postgres-creds \ --from-literal=PGHOST=pghost \ --from-literal=PGPORT=5432 \ --from-literal=PGUSER=postgres \ --from-literal=PGPASSWORD=secret \ --from-literal=PGDATABASE=platz -
Install the chart:
helm install platzio -n platzio platzio/platzio
helm delete platzio