mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 11:35:56 +08:00
83c68da0a0
Signed-off-by: Simon L <szaimen@e.mail.de>
47 lines
1.4 KiB
YAML
Executable file
47 lines
1.4 KiB
YAML
Executable file
{{- if eq .Values.ONLYOFFICE_ENABLED "yes" }}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml
|
|
kompose.version: 1.28.0 (c4137012e)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-onlyoffice
|
|
name: nextcloud-aio-onlyoffice
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-onlyoffice
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml
|
|
kompose.version: 1.28.0 (c4137012e)
|
|
labels:
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
io.kompose.service: nextcloud-aio-onlyoffice
|
|
spec:
|
|
securityContext:
|
|
fsGroup: 65534
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
containers:
|
|
- env:
|
|
- name: JWT_ENABLED
|
|
value: "true"
|
|
- name: JWT_HEADER
|
|
value: AuthorizationJwt
|
|
- name: JWT_SECRET
|
|
value: "{{ .Values.ONLYOFFICE_SECRET }}"
|
|
- name: TZ
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
image: nextcloud/aio-onlyoffice:20230124_100035-{{ .Values.IMAGE_TAG }}
|
|
name: nextcloud-aio-onlyoffice
|
|
volumeMounts:
|
|
- mountPath: /var/lib/onlyoffice
|
|
name: nextcloud-aio-onlyoffice
|
|
volumes:
|
|
- name: nextcloud-aio-onlyoffice
|
|
persistentVolumeClaim:
|
|
claimName: nextcloud-aio-onlyoffice
|
|
{{- end }}
|