mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 19:15:08 +08:00
356e32f3d1
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
39 lines
1.1 KiB
YAML
Executable file
39 lines
1.1 KiB
YAML
Executable file
{{- if eq .Values.IMAGINARY_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-imaginary
|
|
name: nextcloud-aio-imaginary
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-imaginary
|
|
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-imaginary
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: TZ
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
image: nextcloud/aio-imaginary:20240228_172209-latest
|
|
name: nextcloud-aio-imaginary
|
|
ports:
|
|
- containerPort: 9000
|
|
protocol: TCP
|
|
securityContext:
|
|
capabilities:
|
|
add:
|
|
- SYS_NICE
|
|
{{- end }}
|