-
Notifications
You must be signed in to change notification settings - Fork 301
Next Major Release: v7 #673
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6e3ea53
feat(nextcloud)!: add changelog for next major release
wrenix a852143
fix(deps)!: update redis to v21
wrenix 8694931
fix(deps)!: update postgresql to v16
wrenix 7cde2c6
fix(deps)!: update mariadb to v20
wrenix 04c7f6c
fix(deps)!: update nextcloud to v31
wrenix 8dd1b48
feat(metrics): add prometheus rules (and update exporter)
wrenix e9bad15
fix(nginx): sync with nginx-admin docu
wrenix b1f9b60
Merge branch 'main' into develop
varet80 8c47b6c
bump docker image
varet80 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # Changelog | ||
|
|
||
| This Helm-Chart increase there major version on every breaking change (or major version of Nextcloud itself) inspired by semantic releases. | ||
|
|
||
| Here we list all major versions and their breaking changes for migration. | ||
|
|
||
| ## v7 | ||
|
|
||
| - update redis to v20 (see [CHANGELOG](https://github.com/bitnami/charts/blob/main/bitnami/redis/CHANGELOG.md#2000-2024-08-09)) | ||
| - update redis to v21 (see [CHANGELOG](https://github.com/bitnami/charts/blob/main/bitnami/redis/CHANGELOG.md#2100-2025-05-06) | ||
| - update postgresql to v16 (see [CHANGELOG](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/CHANGELOG.md#1600-2024-10-02)) | ||
| - maybe use [pgautoupgrade](https://github.com/pgautoupgrade/docker-pgautoupgrade) to update to v17 (helm v16), with: | ||
| ```yaml | ||
| postgresql: | ||
| primary: | ||
| initContainers: | ||
| - name: upgrade | ||
| image: "pgautoupgrade/pgautoupgrade:17-alpine" | ||
| env: | ||
| - name: "PGAUTO_ONESHOT" | ||
| value: "yes" | ||
| volumeMounts: | ||
| - mountPath: "/bitnami/postgresql" | ||
| name: "data" | ||
| ``` | ||
| - update mariadb to v19 (see [CHANGELOG](https://github.com/bitnami/charts/blob/main/bitnami/mariadb/CHANGELOG.md#1900-2024-07-11)) | ||
| - update mariadb to v20 (see [CHANGELOG](https://github.com/bitnami/charts/blob/main/bitnami/mariadb/CHANGELOG.md#2000-2024-11-08)) | ||
| - update nextcloud to v31 (see [CHANGELOG](https://nextcloud.com/changelog/#31-0-0)) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| dependencies: | ||
| - name: postgresql | ||
| repository: oci://registry-1.docker.io/bitnamicharts | ||
| version: 15.5.0 | ||
| version: 16.7.4 | ||
| - name: mariadb | ||
| repository: oci://registry-1.docker.io/bitnamicharts | ||
| version: 18.2.0 | ||
| version: 20.5.5 | ||
| - name: redis | ||
| repository: oci://registry-1.docker.io/bitnamicharts | ||
| version: 19.6.4 | ||
| version: 21.1.3 | ||
| - name: collabora-online | ||
| repository: https://collaboraonline.github.io/online | ||
| version: 1.1.20 | ||
| digest: sha256:00e8d82d28825fd3f46e7e7d888d1aac93ebdb5135f6a4d7e6ae0c3155881c27 | ||
| generated: "2024-12-15T19:47:53.357052+01:00" | ||
| digest: sha256:47979e007ed8bb4a53ec00c5e457da110573a6e067f24da505144f475b26981c | ||
| generated: "2025-05-18T15:22:37.968306345+02:00" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| {{- if .Values.metrics.rules.enabled }} | ||
| {{- $fullname := include "nextcloud.fullname" . }} | ||
| apiVersion: monitoring.coreos.com/v1 | ||
| kind: PrometheusRule | ||
| metadata: | ||
| name: {{ $fullname }} | ||
| labels: | ||
| {{- include "nextcloud.labels" ( dict "rootContext" $ ) | nindent 4 }} | ||
| {{- with .Values.metrics.rules.labels }} | ||
| {{- toYaml . | nindent 4 }} | ||
| {{- end }} | ||
| spec: | ||
| groups: | ||
| {{- with .Values.metrics.rules.defaults }} | ||
| {{- if .enabled }} | ||
| {{- $filter := .filter | default (printf `namespace="%s",job=~"^%s.*"` $.Release.Namespace $fullname) }} | ||
| - name: {{ $fullname }}-Defaults | ||
| rules: | ||
| - alert: "nextcloud: not reachable" | ||
| expr: 'avg(nextcloud_up{ {{ $filter }} }) without(endpoint,container,pod,instance) < 1' | ||
| for: 5m | ||
| labels: | ||
| severity: "critical" | ||
| {{- with .labels }} | ||
| {{- toYaml . | nindent 12 }} | ||
| {{- end }} | ||
| annotations: | ||
| {{` | ||
| summary: "Nextcloud in {{ $labels.namespace }} is not reachable by exporter" | ||
| `}} | ||
| - alert: "nextcloud: outdated version" | ||
| expr: 'sum(nextcloud_system_update_available{ {{ $filter }} }) without(endpoint,container,pod,instance) > 0' | ||
| labels: | ||
| severity: "warning" | ||
| {{- with .labels }} | ||
| {{- toYaml . | nindent 12 }} | ||
| {{- end }} | ||
| annotations: | ||
| {{` | ||
| summary: "Nextcloud in {{ $labels.namespace }} is outdated" | ||
| `}} | ||
| - alert: "nextcloud: outdated apps" | ||
| expr: 'sum(nextcloud_apps_updates_available_total{ {{ $filter }} }) without(endpoint,container,pod,instance) > 0' | ||
| labels: | ||
| severity: "warning" | ||
| {{- with .labels }} | ||
| {{- toYaml . | nindent 12 }} | ||
| {{- end }} | ||
| annotations: | ||
| {{` | ||
| summary: "Nextcloud in {{ $labels.namespace }} has {{ $value }} outdated Apps" | ||
| `}} | ||
| {{- end }} | ||
| {{- end }}{{/* end-with prometheus.rules.default */}} | ||
| {{- with .Values.metrics.rules.additionalRules }} | ||
| - name: {{ $fullname }}-Additional | ||
| rules: | ||
| {{- toYaml . | nindent 8 }} | ||
| {{- end }} | ||
| {{- end }} | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.