From 5b3b09d1d796c16df89b606bbf23668db0cc642f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Ahlers?= Date: Thu, 6 Nov 2025 13:43:02 +0000 Subject: [PATCH] values.yaml aktualisiert --- values.yaml | 52 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 34 insertions(+), 18 deletions(-) diff --git a/values.yaml b/values.yaml index a181f77..89bf486 100644 --- a/values.yaml +++ b/values.yaml @@ -4,9 +4,9 @@ librebooking: image: - repository: librebooking/librebooking + repository: harbor.fbbgg.hs-woe.de/librebooking/librebooking pullPolicy: IfNotPresent - tag: "4.0.0" + tag: latest # This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ imagePullSecrets: [] @@ -51,22 +51,38 @@ librebooking: ## MariaDB chart configuration mariadb: enabled: true - #https://github.com/LibreBooking/docker/blob/develop/RUN.md - loglevel: 'false' - # for all possible configuration values, see: - # https://github.com/bitnami/charts/blob/master/bitnami/mariadb/values.yaml - auth: - existingSecret: null - # MariaDB root password - rootPassword: "" - # MariaDB custom database - database: librebooking - # MariaDB custom user name - username: librebooking - # MariaDB custom user password - password: test - storageClass: null - size: 10Gi + + ## Database configuration + settings: + ## The root user password + rootPassword: + + ## Optional user database which is created during first startup with user and password + userDatabase: {} + ## Name of the user database + # name: + ## Database user with full access rights + # user: + ## Password of the database user + # password: + + # Storage parameters + storage: + ## Set persistentVolumenClaimName to reference an existing PVC + persistentVolumeClaimName: + + ## Alternative set requestedSize to define a size for a dynmaically created PVC + requestedSize: + + ## the storage class name + className: + + ## Additional storage annotations + annotations: {} + + ## Additional storage labels + labels: {} + ## Use an externally provisioned database instance ## Ignored when mariadb.enabled is set to true