2022-12-22 20:29:31 +08:00
|
|
|
{{- if eq .Values.CLAMAV_ENABLED "yes" }}
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2024-02-29 02:30:56 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
2024-01-24 20:09:20 +08:00
|
|
|
kompose.version: 1.32.0 (765fde254)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
|
|
name: nextcloud-aio-clamav
|
2024-02-29 02:30:56 +08:00
|
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
2022-12-22 20:29:31 +08:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2024-02-29 02:30:56 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace "{{ .Values.NAMESPACE }}"
|
2024-01-24 20:09:20 +08:00
|
|
|
kompose.version: 1.32.0 (765fde254)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
|
|
io.kompose.service: nextcloud-aio-clamav
|
|
|
|
spec:
|
2023-02-01 23:00:52 +08:00
|
|
|
initContainers:
|
2023-11-21 19:00:51 +08:00
|
|
|
- name: init-subpath
|
|
|
|
image: alpine
|
|
|
|
command:
|
|
|
|
- mkdir
|
|
|
|
- "-p"
|
|
|
|
- /nextcloud-aio-clamav/data
|
|
|
|
- /nextcloud-aio-clamav
|
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-clamav
|
|
|
|
mountPath: /nextcloud-aio-clamav
|
2023-02-01 23:00:52 +08:00
|
|
|
- name: init-volumes
|
|
|
|
image: alpine
|
|
|
|
command:
|
2023-11-21 19:00:51 +08:00
|
|
|
- chown
|
|
|
|
- 100:100
|
|
|
|
- "-R"
|
2023-02-01 23:00:52 +08:00
|
|
|
- /nextcloud-aio-clamav
|
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-clamav
|
|
|
|
mountPath: /nextcloud-aio-clamav
|
2022-12-22 20:29:31 +08:00
|
|
|
containers:
|
|
|
|
- env:
|
|
|
|
- name: CLAMD_STARTUP_TIMEOUT
|
|
|
|
value: "90"
|
|
|
|
- name: TZ
|
|
|
|
value: "{{ .Values.TIMEZONE }}"
|
2024-02-29 02:30:56 +08:00
|
|
|
image: nextcloud/aio-clamav:20240228_172209-latest
|
2022-12-22 20:29:31 +08:00
|
|
|
name: nextcloud-aio-clamav
|
2023-02-02 22:44:37 +08:00
|
|
|
ports:
|
|
|
|
- containerPort: 3310
|
2023-07-20 21:54:51 +08:00
|
|
|
protocol: TCP
|
2022-12-22 20:29:31 +08:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /var/lib/clamav
|
2023-11-21 19:00:51 +08:00
|
|
|
subPath: data
|
2022-12-22 20:29:31 +08:00
|
|
|
name: nextcloud-aio-clamav
|
|
|
|
volumes:
|
|
|
|
- name: nextcloud-aio-clamav
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: nextcloud-aio-clamav
|
|
|
|
{{- end }}
|