Add initial Helm chart for BookStack deployment with configuration files

This commit is contained in:
2025-05-07 18:59:58 +02:00
parent b62c4ac2ac
commit a5a9f15a8f
17 changed files with 729 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
BookStack was installed to namespace {{ .Release.Namespace }}.
{{- if .Values.ingress.enabled }}
Your BookStack instance is available under
{{ if .Values.ingress.tls }}https{{ else }}http{{ end }}://{{ .Values.ingress.hostname }}
{{- end }}
{{- if .Values.db.enabled }}
You decided to also install a MariaDB, you can get the root password by executing the following command:
kubectl get secret {{ include "bookstack.db.secretName" . }} \
--namespace {{ .Release.Namespace }} \
-o jsonpath="{.data.mariadb-root-password}" | base64 -d && echo
{{- else }}
Note: BookStack is using **an external database**:
{{ printf "%s" .Values.bookstack.externalDatabase.host }}.
{{- end }}