Merge pull request #4344 from nextcloud/aio-helm-update

Helm Chart updates
This commit is contained in:
Simon L 2024-03-08 10:36:08 +01:00 committed by GitHub
commit 0eda1f9e9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 75 additions and 13 deletions

View file

@ -1,6 +1,6 @@
name: nextcloud-aio-helm-chart name: nextcloud-aio-helm-chart
description: A generated Helm Chart for Nextcloud AIO from Skippbox Kompose description: A generated Helm Chart for Nextcloud AIO from Skippbox Kompose
version: 7.13.0 version: 7.13.1
apiVersion: v2 apiVersion: v2
keywords: keywords:
- latest - latest

View file

@ -13,6 +13,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-apache io.kompose.service: nextcloud-aio-apache
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -59,13 +61,17 @@ spec:
value: nextcloud-aio-talk value: nextcloud-aio-talk
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-apache:20240228_172209-latest image: nextcloud/aio-apache:20240308_092935-latest
name: nextcloud-aio-apache name: nextcloud-aio-apache
ports: ports:
- containerPort: {{ .Values.APACHE_PORT }} - containerPort: {{ .Values.APACHE_PORT }}
protocol: TCP protocol: TCP
- containerPort: {{ .Values.APACHE_PORT }} - containerPort: {{ .Values.APACHE_PORT }}
protocol: UDP protocol: UDP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /var/www/html - mountPath: /var/www/html
name: nextcloud-aio-nextcloud name: nextcloud-aio-nextcloud

View file

@ -14,6 +14,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-clamav io.kompose.service: nextcloud-aio-clamav
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -50,11 +52,15 @@ spec:
value: "90" value: "90"
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-clamav:20240228_172209-latest image: nextcloud/aio-clamav:20240308_092935-latest
name: nextcloud-aio-clamav name: nextcloud-aio-clamav
ports: ports:
- containerPort: 3310 - containerPort: 3310
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /var/lib/clamav - mountPath: /var/lib/clamav
subPath: data subPath: data

View file

@ -37,7 +37,7 @@ spec:
value: --o:ssl.enable=false --o:ssl.termination=true --o:mount_jail_tree=false --o:logging.level=warning --o:home_mode.enable=true {{ .Values.COLLABORA_SECCOMP_POLICY }} --o:remote_font_config.url=https://{{ .Values.NC_DOMAIN }}/apps/richdocuments/settings/fonts.json value: --o:ssl.enable=false --o:ssl.termination=true --o:mount_jail_tree=false --o:logging.level=warning --o:home_mode.enable=true {{ .Values.COLLABORA_SECCOMP_POLICY }} --o:remote_font_config.url=https://{{ .Values.NC_DOMAIN }}/apps/richdocuments/settings/fonts.json
- name: server_name - name: server_name
value: "{{ .Values.NC_DOMAIN }}" value: "{{ .Values.NC_DOMAIN }}"
image: nextcloud/aio-collabora:20240228_172209-latest image: nextcloud/aio-collabora:20240308_092935-latest
name: nextcloud-aio-collabora name: nextcloud-aio-collabora
ports: ports:
- containerPort: 9980 - containerPort: 9980
@ -46,4 +46,6 @@ spec:
capabilities: capabilities:
add: add:
- MKNOD - MKNOD
drop:
- NET_RAW
{{- end }} {{- end }}

View file

@ -13,6 +13,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-database io.kompose.service: nextcloud-aio-database
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -61,11 +63,15 @@ spec:
value: nextcloud value: nextcloud
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-postgresql:20240228_172209-latest image: nextcloud/aio-postgresql:20240308_092935-latest
name: nextcloud-aio-database name: nextcloud-aio-database
ports: ports:
- containerPort: 5432 - containerPort: 5432
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /var/lib/postgresql/data - mountPath: /var/lib/postgresql/data
subPath: data subPath: data

View file

@ -14,6 +14,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-fulltextsearch io.kompose.service: nextcloud-aio-fulltextsearch
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -55,11 +57,15 @@ spec:
value: basic value: basic
- name: xpack.security.enabled - name: xpack.security.enabled
value: "false" value: "false"
image: nextcloud/aio-fulltextsearch:20240228_172209-latest image: nextcloud/aio-fulltextsearch:20240308_092935-latest
name: nextcloud-aio-fulltextsearch name: nextcloud-aio-fulltextsearch
ports: ports:
- containerPort: 9200 - containerPort: 9200
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /usr/share/elasticsearch/data - mountPath: /usr/share/elasticsearch/data
name: nextcloud-aio-elasticsearch name: nextcloud-aio-elasticsearch

View file

@ -27,7 +27,7 @@ spec:
- env: - env:
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-imaginary:20240228_172209-latest image: nextcloud/aio-imaginary:20240308_092935-latest
name: nextcloud-aio-imaginary name: nextcloud-aio-imaginary
ports: ports:
- containerPort: 9000 - containerPort: 9000
@ -36,4 +36,6 @@ spec:
capabilities: capabilities:
add: add:
- SYS_NICE - SYS_NICE
drop:
- NET_RAW
{{- end }} {{- end }}

View file

@ -1,5 +1,7 @@
{{- if ne .Values.NAMESPACE "default" }}
apiVersion: v1 apiVersion: v1
kind: Namespace kind: Namespace
metadata: metadata:
name: "{{ .Values.NAMESPACE }}" name: "{{ .Values.NAMESPACE }}"
namespace: "{{ .Values.NAMESPACE }}" namespace: "{{ .Values.NAMESPACE }}"
{{- end }}

View file

@ -13,6 +13,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-nextcloud io.kompose.service: nextcloud-aio-nextcloud
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -158,13 +160,17 @@ spec:
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
- name: UPDATE_NEXTCLOUD_APPS - name: UPDATE_NEXTCLOUD_APPS
value: "{{ .Values.UPDATE_NEXTCLOUD_APPS }}" value: "{{ .Values.UPDATE_NEXTCLOUD_APPS }}"
image: nextcloud/aio-nextcloud:20240228_172209-latest image: nextcloud/aio-nextcloud:20240308_092935-latest
name: nextcloud-aio-nextcloud name: nextcloud-aio-nextcloud
ports: ports:
- containerPort: 9000 - containerPort: 9000
protocol: TCP protocol: TCP
- containerPort: 9001 - containerPort: 9001
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /var/www/html - mountPath: /var/www/html
name: nextcloud-aio-nextcloud name: nextcloud-aio-nextcloud

View file

@ -13,6 +13,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-notify-push io.kompose.service: nextcloud-aio-notify-push
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -50,11 +52,15 @@ spec:
value: nextcloud-aio-redis value: nextcloud-aio-redis
- name: REDIS_HOST_PASSWORD - name: REDIS_HOST_PASSWORD
value: "{{ .Values.REDIS_PASSWORD }}" value: "{{ .Values.REDIS_PASSWORD }}"
image: nextcloud/aio-notify-push:20240228_172209-latest image: nextcloud/aio-notify-push:20240308_092935-latest
name: nextcloud-aio-notify-push name: nextcloud-aio-notify-push
ports: ports:
- containerPort: 7867 - containerPort: 7867
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /nextcloud - mountPath: /nextcloud
name: nextcloud-aio-nextcloud name: nextcloud-aio-nextcloud

View file

@ -14,6 +14,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-onlyoffice io.kompose.service: nextcloud-aio-onlyoffice
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -43,11 +45,15 @@ spec:
value: "{{ .Values.ONLYOFFICE_SECRET }}" value: "{{ .Values.ONLYOFFICE_SECRET }}"
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-onlyoffice:20240228_172209-latest image: nextcloud/aio-onlyoffice:20240308_092935-latest
name: nextcloud-aio-onlyoffice name: nextcloud-aio-onlyoffice
ports: ports:
- containerPort: 80 - containerPort: 80
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /var/lib/onlyoffice - mountPath: /var/lib/onlyoffice
name: nextcloud-aio-onlyoffice name: nextcloud-aio-onlyoffice

View file

@ -13,6 +13,8 @@ spec:
selector: selector:
matchLabels: matchLabels:
io.kompose.service: nextcloud-aio-redis io.kompose.service: nextcloud-aio-redis
strategy:
type: Recreate
template: template:
metadata: metadata:
annotations: annotations:
@ -38,11 +40,15 @@ spec:
value: "{{ .Values.REDIS_PASSWORD }}" value: "{{ .Values.REDIS_PASSWORD }}"
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-redis:20240228_172209-latest image: nextcloud/aio-redis:20240308_092935-latest
name: nextcloud-aio-redis name: nextcloud-aio-redis
ports: ports:
- containerPort: 6379 - containerPort: 6379
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
volumeMounts: volumeMounts:
- mountPath: /data - mountPath: /data
name: nextcloud-aio-redis name: nextcloud-aio-redis

View file

@ -37,7 +37,7 @@ spec:
value: "{{ .Values.TURN_SECRET }}" value: "{{ .Values.TURN_SECRET }}"
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-talk:20240228_172209-latest image: nextcloud/aio-talk:20240308_092935-latest
name: nextcloud-aio-talk name: nextcloud-aio-talk
ports: ports:
- containerPort: {{ .Values.TALK_PORT }} - containerPort: {{ .Values.TALK_PORT }}
@ -46,4 +46,8 @@ spec:
protocol: UDP protocol: UDP
- containerPort: 8081 - containerPort: 8081
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
{{- end }} {{- end }}

View file

@ -33,9 +33,13 @@ spec:
value: "{{ .Values.RECORDING_SECRET }}" value: "{{ .Values.RECORDING_SECRET }}"
- name: TZ - name: TZ
value: "{{ .Values.TIMEZONE }}" value: "{{ .Values.TIMEZONE }}"
image: nextcloud/aio-talk-recording:20240228_172209-latest image: nextcloud/aio-talk-recording:20240308_092935-latest
name: nextcloud-aio-talk-recording name: nextcloud-aio-talk-recording
ports: ports:
- containerPort: 1234 - containerPort: 1234
protocol: TCP protocol: TCP
securityContext:
capabilities:
drop:
- NET_RAW
{{- end }} {{- end }}