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

chore(deps): update martinhelmich/typo3 docker tag to v12 #854

Merged
merged 4 commits into from
Feb 20, 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
18 changes: 12 additions & 6 deletions charts/typo3/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: typo3
description: TYPO3 β€” the Professional, Flexible Content Management System
type: application
version: 1.19.1
appVersion: "11.5"
version: 2.0.0
appVersion: "12.4"
home: https://github.com/christianknell/helm-charts
icon: https://www.mdc.de/wp-content/uploads/2016/05/typo3_logo.png
maintainers:
Expand All @@ -19,16 +19,22 @@ dependencies:
condition: mysql.enabled
- name: mariadb
repository: https://charts.bitnami.com/bitnami
version: 11.5.7
version: 16.2.0
condition: mariadb.enabled
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.12.10
version: 14.1.3
condition: postgresql.enabled
annotations:
artifacthub.io/changes: |
- kind: fixed
description: wrong mount paths
- kind: changed
description: bumped chart version of mariadb to 16.2.0
- kind: changed
description: bumped chart version of mysql to 9.19.1
- kind: changed
description: bumped chart version of postgresql to 14.1.3
- kind: changed
description: bumped image version to 12.4
artifacthub.io/screenshots: |
- title: TYPO3 is a very powerful Web Content Management System.
url: https://docs.typo3.org/m/typo3/tutorial-getting-started/10.4/en-us/_images/BackendAboutModules.png
Expand Down
10 changes: 9 additions & 1 deletion charts/typo3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The command removes all the Kubernetes components associated with the chart and
| fullnameOverride | string | `""` | String to fully override `"typo3.fullname"` |
| image.pullPolicy | string | `"Always"` | image pull policy |
| image.repository | string | `"martinhelmich/typo3"` | image repository |
| image.tag | string | `"11.5"` | Overrides the image tag |
| image.tag | string | `"12.4"` | Overrides the image tag |
| imagePullSecrets | list | `[]` | If defined, uses a Secret to pull an image from a private Docker registry or repository. |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | |
Expand Down Expand Up @@ -126,6 +126,14 @@ helm install my-release -f values.yaml christianknell/typo3

## Upgrading the Chart

### 2.0.0

This major updates the TYPO3 Docker Image to its newest major, 12.4. [Here](https://get.typo3.org/release-notes/12.4.0) you can find more information about the changes introduced in that version.

Additionaly it updates the PostgreSQL subchart to its newest major, 14.0.0. [Here](https://github.com/bitnami/charts/tree/master/bitnami/postgresql#to-1400) you can find more information about the changes introduced in that version.

Additionally it updates the MariaDB subchart to its newest major, 16.0.0. [Here](https://github.com/bitnami/charts/tree/main/bitnami/mariadb#to-1600) you can find more information about the changes introduced in that version.

### 1.0.0

This major updates the PostgreSQL subchart to its newest major, 12.0.0. [Here](https://github.com/bitnami/charts/tree/master/bitnami/postgresql#to-1200) you can find more information about the changes introduced in that version.
8 changes: 8 additions & 0 deletions charts/typo3/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ helm install my-release -f values.yaml christianknell/typo3

## Upgrading the Chart

### 2.0.0

This major updates the TYPO3 Docker Image to its newest major, 12.4. [Here](https://get.typo3.org/release-notes/12.4.0) you can find more information about the changes introduced in that version.

Additionaly it updates the PostgreSQL subchart to its newest major, 14.0.0. [Here](https://github.com/bitnami/charts/tree/master/bitnami/postgresql#to-1400) you can find more information about the changes introduced in that version.

Additionally it updates the MariaDB subchart to its newest major, 16.0.0. [Here](https://github.com/bitnami/charts/tree/main/bitnami/mariadb#to-1600) you can find more information about the changes introduced in that version.

### 1.0.0

This major updates the PostgreSQL subchart to its newest major, 12.0.0. [Here](https://github.com/bitnami/charts/tree/master/bitnami/postgresql#to-1200) you can find more information about the changes introduced in that version.
2 changes: 1 addition & 1 deletion charts/typo3/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ image:
# -- image pull policy
pullPolicy: Always
# -- Overrides the image tag
tag: "11.5"
tag: "12.4"

# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
imagePullSecrets: []
Expand Down
Loading