mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
66 lines
2.2 KiB
YAML
Executable file
66 lines
2.2 KiB
YAML
Executable file
{{- if eq .Values.WHITEBOARD_ENABLED "yes" }}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
|
kompose.version: 1.34.0 (cbf2835db)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-whiteboard
|
|
name: nextcloud-aio-whiteboard
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-whiteboard
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
|
kompose.version: 1.34.0 (cbf2835db)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-whiteboard
|
|
spec:
|
|
securityContext:
|
|
# The items below only work in pod context
|
|
fsGroup: 65534
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
# The items below work in both contexts
|
|
runAsUser: 65534
|
|
runAsGroup: 65534
|
|
runAsNonRoot: true
|
|
{{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }}
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
{{- end }}
|
|
containers:
|
|
- env:
|
|
- name: JWT_SECRET_KEY
|
|
value: "{{ .Values.WHITEBOARD_SECRET }}"
|
|
- name: NEXTCLOUD_URL
|
|
value: https://{{ .Values.NC_DOMAIN }}
|
|
- name: REDIS_HOST
|
|
value: nextcloud-aio-redis
|
|
- name: REDIS_HOST_PASSWORD
|
|
value: "{{ .Values.REDIS_PASSWORD }}"
|
|
- name: STORAGE_STRATEGY
|
|
value: redis
|
|
- name: TZ
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
image: nextcloud/aio-whiteboard:20241125_091756
|
|
name: nextcloud-aio-whiteboard
|
|
ports:
|
|
- containerPort: 3002
|
|
protocol: TCP
|
|
securityContext:
|
|
# The items below only work in container context
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
{{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }}
|
|
drop: ["ALL"]
|
|
{{- else }}
|
|
drop: ["NET_RAW"]
|
|
{{- end }}
|
|
add: ["NET_BIND_SERVICE"]
|
|
{{- end }}
|