Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert revision number to r4 #83

Merged
merged 7 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/dbp-moodle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/dbp-moodle/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/dbp-moodle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions moodle/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"}

Expand Down Expand Up @@ -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}

Expand Down