2022-12-22 20:29:31 +08:00
|
|
|
{{- if eq .Values.FULLTEXTSEARCH_ENABLED "yes" }}
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2023-08-10 06:46:40 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
2023-10-16 16:17:16 +08:00
|
|
|
kompose.version: 1.31.2 (a92241f79)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-fulltextsearch
|
|
|
|
name: nextcloud-aio-fulltextsearch
|
2023-08-10 06:46:40 +08:00
|
|
|
namespace: {{ .Values.NAMESPACE }}
|
2022-12-22 20:29:31 +08:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.kompose.service: nextcloud-aio-fulltextsearch
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2023-08-10 06:46:40 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
2023-10-16 16:17:16 +08:00
|
|
|
kompose.version: 1.31.2 (a92241f79)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
|
|
io.kompose.service: nextcloud-aio-fulltextsearch
|
|
|
|
spec:
|
2023-02-01 23:00:52 +08:00
|
|
|
initContainers:
|
|
|
|
- name: init-volumes
|
|
|
|
image: alpine
|
|
|
|
command:
|
|
|
|
- chmod
|
2023-02-02 01:51:40 +08:00
|
|
|
- "777"
|
2023-02-01 23:00:52 +08:00
|
|
|
- /nextcloud-aio-elasticsearch
|
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-elasticsearch
|
|
|
|
mountPath: /nextcloud-aio-elasticsearch
|
2022-12-22 20:29:31 +08:00
|
|
|
containers:
|
|
|
|
- env:
|
|
|
|
- name: ES_JAVA_OPTS
|
2023-07-28 17:08:22 +08:00
|
|
|
value: -Xms512M -Xmx512M
|
2023-09-12 16:46:20 +08:00
|
|
|
- name: FULLTEXTSEARCH_PASSWORD
|
|
|
|
value: "{{ .Values.FULLTEXTSEARCH_PASSWORD }}"
|
2022-12-22 20:29:31 +08:00
|
|
|
- name: TZ
|
|
|
|
value: "{{ .Values.TIMEZONE }}"
|
2023-07-28 17:08:22 +08:00
|
|
|
- name: bootstrap.memory_lock
|
|
|
|
value: "true"
|
|
|
|
- name: cluster.name
|
|
|
|
value: nextcloud-aio
|
2022-12-22 20:29:31 +08:00
|
|
|
- name: discovery.type
|
|
|
|
value: single-node
|
2023-07-28 17:08:22 +08:00
|
|
|
- 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"
|
2023-10-27 18:30:37 +08:00
|
|
|
image: nextcloud/aio-fulltextsearch:20231027_071516-latest
|
2022-12-22 20:29:31 +08:00
|
|
|
name: nextcloud-aio-fulltextsearch
|
2023-02-02 22:44:37 +08:00
|
|
|
ports:
|
|
|
|
- containerPort: 9200
|
2023-07-20 21:54:51 +08:00
|
|
|
protocol: TCP
|
2022-12-22 20:29:31 +08:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /usr/share/elasticsearch/data
|
|
|
|
name: nextcloud-aio-elasticsearch
|
|
|
|
volumes:
|
|
|
|
- name: nextcloud-aio-elasticsearch
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: nextcloud-aio-elasticsearch
|
|
|
|
{{- end }}
|