From 39f970689adab54cc757071a32f439fd17e839ac Mon Sep 17 00:00:00 2001 From: Maksim Eltyshev Date: Tue, 14 Oct 2025 18:52:09 +0200 Subject: [PATCH] chore: Little tidy up --- charts/planka/README.md | 12 ++++++------ charts/planka/values.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/charts/planka/README.md b/charts/planka/README.md index 81833b71..a7043054 100644 --- a/charts/planka/README.md +++ b/charts/planka/README.md @@ -114,7 +114,7 @@ Any questions or concerns, [raise an issue](https://github.com/Chris-Greaves/pla ### Extra Volume Mounts -The Helm chart supports mounting arbitrary ConfigMaps, Secrets, and Volumes to the Planka deployment using the `extraMounts` configuration. This is especially useful for scenarios like: +The Helm chart supports mounting arbitrary ConfigMaps, Secrets, and Volumes to the PLANKA deployment using the `extraMounts` configuration. This is especially useful for scenarios like: - Mounting custom CA certificates for OIDC with self-hosted identity providers - Adding custom configuration files @@ -136,7 +136,7 @@ extraMounts: readOnly: true configMap: name: ca-certificates # Must exist - + # Mount TLS certificates from existing Secret - name: tls-certs mountPath: /etc/ssl/private @@ -148,14 +148,14 @@ extraMounts: path: server.crt - key: tls.key path: server.key - + # Temporary storage - name: temp-storage mountPath: /tmp/planka-temp readOnly: false emptyDir: sizeLimit: 1Gi - + # Host path mount - name: backup-storage mountPath: /var/lib/planka-backups @@ -163,7 +163,7 @@ extraMounts: hostPath: path: /var/lib/planka-backups type: DirectoryOrCreate - + # NFS mount - name: nfs-storage mountPath: /shared/data @@ -175,7 +175,7 @@ extraMounts: ### OIDC with Self-Hosted Keycloak -A common use case is configuring OIDC with a self-hosted Keycloak instance that uses custom CA certificates. +A common use case is configuring OIDC with a self-hosted Keycloak instance that uses custom CA certificates. First, create the CA certificate ConfigMap: ```bash diff --git a/charts/planka/values.yaml b/charts/planka/values.yaml index 54b882b2..806a3369 100644 --- a/charts/planka/values.yaml +++ b/charts/planka/values.yaml @@ -240,7 +240,7 @@ extraEnv: [] ## value: "your_email@example.com" ## Extra volume mounts configuration -## Mount ConfigMaps, Secrets, and arbitrary volumes to the Planka container +## Mount ConfigMaps, Secrets, and arbitrary volumes to the PLANKA container ## This allows mounting any pre-existing ConfigMaps, Secrets, or other volume types ## extraMounts: []