diff --git a/charts/dbp-moodle/Chart.yaml b/charts/dbp-moodle/Chart.yaml index 220668f..ccb27b5 100644 --- a/charts/dbp-moodle/Chart.yaml +++ b/charts/dbp-moodle/Chart.yaml @@ -6,7 +6,7 @@ description: | The Chart can be deployed without any modification but it is advised to set own secrets acccording to this readme. type: application home: https://dbildungsplattform.github.io/dbp-moodle/ -version: 0.0.13 +version: 0.0.14 appVersion: "4.1.14" dependencies: - name: moodle diff --git a/charts/dbp-moodle/README.md b/charts/dbp-moodle/README.md index 54a0490..5beae45 100644 --- a/charts/dbp-moodle/README.md +++ b/charts/dbp-moodle/README.md @@ -1,6 +1,6 @@ # dbp-moodle -![Version: 0.0.13](https://img.shields.io/badge/Version-0.0.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.1.14](https://img.shields.io/badge/AppVersion-4.1.14-informational?style=flat-square) +![Version: 0.0.14](https://img.shields.io/badge/Version-0.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.1.14](https://img.shields.io/badge/AppVersion-4.1.14-informational?style=flat-square) This is a Helm Chart bundling some of the bitnami resources to deploy Moodle for DBildungsplattform. Extending them with features such as MariaDB and PostgreSQL support, Horizontal Autoscaling capabilities, Redis Session Store, Etherpad-Lite. @@ -248,7 +248,7 @@ The Chart can be deployed without any modification but it is advised to set own | moodle.image.pullPolicy | string | `"Always"` | | | moodle.image.registry | string | `"ghcr.io"` | | | moodle.image.repository | string | `"dbildungsplattform/moodle"` | | -| moodle.image.tag | string | `"4.1.14-debian-12-r0-dbp4"` | The dbp-moodle image which is build for this helm chart | +| moodle.image.tag | string | `"4.1.14-debian-12-r4-dbp5"` | The dbp-moodle image which is build for this helm chart | | moodle.ingress.annotations."cert-manager.io/cluster-issuer" | string | `"sc-cert-manager-clusterissuer-letsencrypt"` | | | moodle.ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"200M"` | | | moodle.ingress.annotations."nginx.ingress.kubernetes.io/proxy-connect-timeout" | string | `"30s"` | | diff --git a/charts/dbp-moodle/values.yaml b/charts/dbp-moodle/values.yaml index 5754d0e..1d9f81d 100644 --- a/charts/dbp-moodle/values.yaml +++ b/charts/dbp-moodle/values.yaml @@ -230,7 +230,7 @@ moodle: registry: ghcr.io repository: dbildungsplattform/moodle # -- The dbp-moodle image which is build for this helm chart - tag: "4.1.14-debian-12-r0-dbp4" + tag: "4.1.14-debian-12-r4-dbp5" pullPolicy: Always # -- Debug mode for more detailed moodle installation and log output debug: false diff --git a/moodle/Dockerfile b/moodle/Dockerfile index a38d5c7..eb25f75 100644 --- a/moodle/Dockerfile +++ b/moodle/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile starts the entrypoint script to evaluate if a new moodle version exists and an update should be started. # Stage 1: Build stage -FROM bitnami/moodle:4.1.14-debian-12-r0 AS build +FROM bitnami/moodle:4.1.14-debian-12-r4 AS build USER root ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.14"} @@ -33,7 +33,7 @@ RUN mkdir /plugins && /downloadPlugins.sh # RUN /scripts/phpRedisInstall.sh # Stage 2: Production stage -FROM bitnami/moodle:4.1.14-debian-12-r0 +FROM bitnami/moodle:4.1.14-debian-12-r4 ARG MOODLE_VERSION=${MOODLE_VERSION:-"4.1.14"} ARG DEBUG=${DEBUG:-false}