Compare commits

..

1 Commits

Author SHA1 Message Date
Christian Schneemann
159ee1ca00 nginx controller 1.12.0 enables security features by default
These features do not allow current opendesk-service-staticfiles

https://github.com/kubernetes/ingress-nginx/pull/11819
2025-01-09 17:55:58 +01:00
7 changed files with 4 additions and 26 deletions

View File

@@ -24,7 +24,7 @@ openDesk is a Kubernetes-only solution and requires an existing Kubernetes (K8s)
- K8s cluster >= 1.24, [CNCF Certified Kubernetes distribution](https://www.cncf.io/certification/software-conformance/)
- Domain and DNS Service
- Ingress controller (Ingress NGINX)
- Ingress controller (Ingress NGINX) <= controller 1.11.4
- [Helm](https://helm.sh/) >= v3.9.0
- [Helmfile](https://helmfile.readthedocs.io/en/latest/) >= **v1.0.0-rc5**
- [HelmDiff](https://github.com/databus23/helm-diff) >= 3.6.0

View File

@@ -71,12 +71,6 @@ 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.7.0-trossner-notify-push"
version: "3.6.2"
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.7.0-trossner-notify-push"
version: "3.6.2"
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.4.0-trossner-notify-push@sha256:bce12f88cdabc2c5fa81cc4d4dfe7c59e999868f99b2da1f76061dbc2ed55a08"
tag: "2.3.4@sha256:46c596818861486ee621cf8a454c2539a4e230e58b1aebb5735022de849de8e6"
nextcloudExporter:
# providerCategory: "Platform"
# providerResponsible: "openDesk"

View File

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

View File

@@ -239,13 +239,6 @@ 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,11 +6,4 @@ 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
...