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.7 KiB
YAML
Executable file
80 lines
2.7 KiB
YAML
Executable file
{{- if eq .Values.FULLTEXTSEARCH_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-fulltextsearch
|
|
name: nextcloud-aio-fulltextsearch
|
|
namespace: "{{ .Values.NAMESPACE }}"
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-fulltextsearch
|
|
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-fulltextsearch
|
|
spec:
|
|
initContainers:
|
|
- 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:
|
|
- chmod
|
|
- "777"
|
|
- /nextcloud-aio-elasticsearch
|
|
volumeMounts:
|
|
- name: nextcloud-aio-elasticsearch
|
|
mountPath: /nextcloud-aio-elasticsearch
|
|
containers:
|
|
- env:
|
|
- name: ES_JAVA_OPTS
|
|
value: -Xms512M -Xmx512M
|
|
- name: FULLTEXTSEARCH_PASSWORD
|
|
value: "{{ .Values.FULLTEXTSEARCH_PASSWORD }}"
|
|
- name: TZ
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
- name: bootstrap.memory_lock
|
|
value: "true"
|
|
- name: cluster.name
|
|
value: nextcloud-aio
|
|
- name: discovery.type
|
|
value: single-node
|
|
- name: http.port
|
|
value: "9200"
|
|
- name: logger.org.elasticsearch.discovery
|
|
value: WARN
|
|
- name: xpack.license.self_generated.type
|
|
value: basic
|
|
- name: xpack.security.enabled
|
|
value: "false"
|
|
image: "{{ .Values.IMAGE_MIRROR_PREFIX }}{{ .Values.NEXTCLOUD_IMAGE_ORG }}/aio-fulltextsearch:20240321_080708-latest"
|
|
name: nextcloud-aio-fulltextsearch
|
|
ports:
|
|
- containerPort: 9200
|
|
protocol: TCP
|
|
securityContext:
|
|
capabilities:
|
|
drop:
|
|
- NET_RAW
|
|
volumeMounts:
|
|
- mountPath: /usr/share/elasticsearch/data
|
|
name: nextcloud-aio-elasticsearch
|
|
volumes:
|
|
- name: nextcloud-aio-elasticsearch
|
|
persistentVolumeClaim:
|
|
claimName: nextcloud-aio-elasticsearch
|
|
{{- end }}
|