Compare commits

..

2 Commits

Author SHA1 Message Date
Thorsten Roßner
732a807cb0 fix(nextcloud): Add push-notify option 2025-01-14 12:57:24 +00:00
Thorsten Roßner
d545768bfe fix(nextcloud): Add notify_push 2025-01-14 12:57:24 +00:00
7 changed files with 26 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ openDesk currently features the following functional main components:
| File management | Nextcloud | [29.0.8](https://nextcloud.com/de/changelog/#29-0-8) | [Nextcloud 29](https://docs.nextcloud.com/) |
| Groupware | OX App Suite | [8.30](https://documentation.open-xchange.com/appsuite/releases/8.30/) | Online documentation available from within the installed application; [Additional resources](https://documentation.open-xchange.com/) |
| Knowledge management | XWiki | [16.4.4](https://www.xwiki.org/xwiki/bin/view/ReleaseNotes/Data/XWiki/16.4.4/) | [For the most recent release](https://www.xwiki.org/xwiki/bin/view/Documentation) |
| Portal & IAM | Nubus | [1.5.1](https://docs.software-univention.de/nubus-kubernetes-release-notes/latest/en/changelog.html) | [Univention's documentation website](https://docs.software-univention.de/n/en/nubus.html) |
| Portal & IAM | Nubus | [1.4.0](https://docs.software-univention.de/nubus-kubernetes-release-notes/latest/en/changelog.html) | [Univention's documentation website](https://docs.software-univention.de/n/en/nubus.html) |
| Project management | OpenProject | [15.1.0](https://www.openproject.org/docs/release-notes/15-1-0/) | [For the most recent release](https://www.openproject.org/docs/user-guide/) |
| Videoconferencing | Jitsi | [2.0.9823](https://github.com/jitsi/jitsi-meet/releases/tag/stable%2Fjitsi-meet_9823) | [For the most recent release](https://jitsi.github.io/handbook/docs/category/user-guide/) |
| Weboffice | Collabora | [24.04.9.2](https://www.collaboraoffice.com/code-24-04-release-notes/) | Online documentation available from within the installed application; [Additional resources](https://sdk.collaboraonline.com/) |

View File

@@ -71,6 +71,12 @@ aio:
value: {{ .Values.databases.nextcloud.username | quote }}
password:
value: {{ .Values.databases.nextcloud.password | default .Values.secrets.mariadb.nextcloudUser | quote }}
pushNotify:
enabled: {{ .Values.technical.nextcloud.pushNotify.enabled }}
logLevel: {{ if .Values.debug.enabled }}"debug"{{ else }}"info"{{ end }}
replicaCount: {{ .Values.replicas.nextcloudPushNotify }}
resources:
{{ .Values.resources.nextcloudPushNotify | toYaml | nindent 8 }}
trustedProxy: {{ join " " .Values.cluster.networking.cidr | quote }}
containerSecurityContext:
allowPrivilegeEscalation: false

View File

@@ -256,7 +256,7 @@ charts:
registry: "registry.opencode.de"
repository: "bmi/opendesk/components/platform-development/charts/opendesk-nextcloud"
name: "opendesk-nextcloud"
version: "3.6.2"
version: "3.7.0-trossner-notify-push"
verify: true
nextcloudManagement:
# providerCategory: "Platform"
@@ -266,7 +266,7 @@ charts:
registry: "registry.opencode.de"
repository: "bmi/opendesk/components/platform-development/charts/opendesk-nextcloud"
name: "opendesk-nextcloud-management"
version: "3.6.2"
version: "3.7.0-trossner-notify-push"
verify: true
nginx:
# providerCategory: "Community"

View File

@@ -243,7 +243,7 @@ images:
# upstreamRepository: "bmi/opendesk/components/platform-development/images/opendesk-nextcloud"
registry: "registry.opencode.de"
repository: "bmi/opendesk/components/platform-development/images/opendesk-nextcloud"
tag: "2.3.4@sha256:46c596818861486ee621cf8a454c2539a4e230e58b1aebb5735022de849de8e6"
tag: "2.4.0-trossner-notify-push@sha256:bce12f88cdabc2c5fa81cc4d4dfe7c59e999868f99b2da1f76061dbc2ed55a08"
nextcloudExporter:
# providerCategory: "Platform"
# providerResponsible: "openDesk"

View File

@@ -154,6 +154,8 @@ replicas:
nextcloud: 1
# -- scalable: true
nextcloudExporter: 1
# -- scalable: tbd
nextcloudPushNotify: 1
# -- component: openDesk Static Files
# -- scalable: true

View File

@@ -239,6 +239,13 @@ resources:
requests:
cpu: 0.1
memory: "512Mi"
nextcloudPushNotify:
limits:
cpu: 99
memory: "128Mi"
requests:
cpu: 0.01
memory: "32Gi"
nextcloudExporter:
limits:
cpu: 99

View File

@@ -6,4 +6,11 @@ technical:
collabora:
# Defines the value for the start parameter `-o:num_prespawn_children`
numPrespawnChildren: 4
# Nextcloud related technical settings
nextcloud:
# Client push / push-notify app related settings.
# Ref.: https://apps.nextcloud.com/apps/notify_push
pushNotify:
# Enable the feature
enabled: true
...