Planka is an OSS alternative to Trello that you can host yourself, and this is a Helm Chart to make it easier to deploy to K8s.
Shoutout to this issue who have been asking for this Helm Chart.
This chart has been moved into the official Planka repo (see path /charts/planka
). I will still be supporting the chart over there so feel free to tag @Chris-Greaves
on any Helm related issues or PRs. Thanks!
By using the Bitnami chart for PostgreSQL, there is an issue where once deployed, if trying to use a different password then it will be ignored as the Persistant Volume (PV) will already exist with the previous password. See warning from Bitnami below:
Warning! Setting a password will be ignored on new installation in the case when previous Posgresql release was deleted through the helm command. In that case, old PVC will have an old password, and setting it through helm won't take effect. Deleting persistent volumes (PVs) will solve the issue. Refer to issue 2061 for more details
If you want to fully uninstall this chart including the data, follow these steps from the Bitnami Chart's docs.
The basic usage of the chart can be found below:
git clone https://github.com/Chris-Greaves/planka-helm-chart.git
cd planka-helm-chart
helm dependency build
export SECRETKEY=$(openssl rand -hex 64)
helm install planka . --set secretkey=$SECRETKEY
NOTE: The command
openssl rand -hex 64
is needed to create a random hexadecimal key for planka. On Windows you can use Git Bash to run that command.
To access Planka you can port forward using the following command:
kubectl port-forward $POD_NAME 3000:1337
To access Planka externally you can use the following configuration
# HTTP only
helm install planka . --set secretkey=$SECRETKEY \
--set ingress.enabled=true \
--set ingress.hosts[0].host=planka.example.dev \
# HTTPS
helm install planka . --set secretkey=$SECRETKEY \
--set ingress.enabled=true \
--set ingress.hosts[0].host=planka.example.dev \
--set ingress.tls[0].secretName=planka-tls \
--set ingress.tls[0].hosts[0]=planka.example.dev \
or create a values.yaml file like:
secretkey: "<InsertSecretKey>"
ingress:
enabled: true
hosts:
- host: planka.example.dev
paths:
- path: /
pathType: ImplementationSpecific
# Needed for HTTPS
tls:
- secretName: planka-tls # existing TLS secret in k8s
hosts:
- planka.example.dev
helm install planka . -f values.yaml
If you want to host Planka for more than just playing around with, you might want to do the following things:
values.yaml
with your config, as this will make applying upgrades much easier in the future.secretkey
once and store it either in a secure vault, or in your values.yaml
file so it will be the same for upgrading in the future.postgresql.auth.password
as there have been issues with the postgresql chart generating new passwords locking you out of the data you've already stored. (see this issue)Any questions or concerns, raise an issue.