mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 19:15:08 +08:00
0f89c6eaed
Signed-off-by: Simon L <szaimen@e.mail.de>
80 lines
2.5 KiB
YAML
Executable file
80 lines
2.5 KiB
YAML
Executable file
{{- if eq .Values.CLAMAV_ENABLED "yes" }}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
|
kompose.version: 1.32.0 (765fde254)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
name: nextcloud-aio-clamav
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
|
kompose.version: 1.32.0 (765fde254)
|
|
labels:
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
spec:
|
|
initContainers:
|
|
- name: init-subpath
|
|
{{- if or .Values.IMAGE_MIRROR_PREFIX .Values.ALPINE_IMAGE_ORG }}
|
|
image: "{{ .Values.IMAGE_MIRROR_PREFIX }}{{ .Values.ALPINE_IMAGE_ORG}}/alpine"
|
|
{{- else }}
|
|
image: alpine
|
|
{{- end }}
|
|
command:
|
|
- mkdir
|
|
- "-p"
|
|
- /nextcloud-aio-clamav/data
|
|
- /nextcloud-aio-clamav
|
|
volumeMounts:
|
|
- name: nextcloud-aio-clamav
|
|
mountPath: /nextcloud-aio-clamav
|
|
- name: init-volumes
|
|
{{- if or .Values.IMAGE_MIRROR_PREFIX .Values.ALPINE_IMAGE_ORG }}
|
|
image: "{{ .Values.IMAGE_MIRROR_PREFIX }}{{ .Values.ALPINE_IMAGE_ORG}}/alpine"
|
|
{{- else }}
|
|
image: alpine
|
|
{{- end }}
|
|
command:
|
|
- chown
|
|
- 100:100
|
|
- "-R"
|
|
- /nextcloud-aio-clamav
|
|
volumeMounts:
|
|
- name: nextcloud-aio-clamav
|
|
mountPath: /nextcloud-aio-clamav
|
|
containers:
|
|
- env:
|
|
- name: CLAMD_STARTUP_TIMEOUT
|
|
value: "90"
|
|
- name: TZ
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
image: "{{ .Values.IMAGE_MIRROR_PREFIX }}{{ .Values.NEXTCLOUD_IMAGE_ORG }}/aio-clamav:20240321_080708-latest"
|
|
name: nextcloud-aio-clamav
|
|
ports:
|
|
- containerPort: 3310
|
|
protocol: TCP
|
|
securityContext:
|
|
capabilities:
|
|
drop:
|
|
- NET_RAW
|
|
volumeMounts:
|
|
- mountPath: /var/lib/clamav
|
|
subPath: data
|
|
name: nextcloud-aio-clamav
|
|
volumes:
|
|
- name: nextcloud-aio-clamav
|
|
persistentVolumeClaim:
|
|
claimName: nextcloud-aio-clamav
|
|
{{- end }}
|