mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-07-19 08:44:42 -04:00
122 lines
4.0 KiB
YAML
122 lines
4.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "yacy.fullname" . }}
|
|
labels:
|
|
{{- include "yacy.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: {{ .Values.replicaCount }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "yacy.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
{{- with .Values.podAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "yacy.selectorLabels" . | nindent 8 }}
|
|
spec:
|
|
{{- with .Values.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
serviceAccountName: {{ include "yacy.serviceAccountName" . }}
|
|
securityContext:
|
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
securityContext:
|
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
|
{{- if .Values.image.useLocal }}
|
|
image: "{{ .Values.image.localRepository }}:{{ .Values.image.localTag }}"
|
|
imagePullPolicy: Never
|
|
{{- else }}
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
{{- end }}
|
|
env:
|
|
- name: YACY_ADMINACCOUNT_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: {{ include "yacy.fullname" . }}
|
|
key: admin-password
|
|
{{- range $key, $value := .Values.env }}
|
|
- name: {{ $key }}
|
|
value: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- if .Values.yacy.settings.maxMemory }}
|
|
- name: YACY_JAVASTART_XMXMINIT
|
|
value: {{ .Values.yacy.settings.maxMemory | quote }}
|
|
{{- end }}
|
|
{{- if (not .Values.yacy.settings.joinP2PNetwork) }}
|
|
- name: YACY_NETWORK_UNIT_INTRANET
|
|
value: "true"
|
|
{{- end }}
|
|
ports:
|
|
- name: http
|
|
containerPort: 8090
|
|
protocol: TCP
|
|
- name: https
|
|
containerPort: 8443
|
|
protocol: TCP
|
|
startupProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 12
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /api/status_p.xml
|
|
port: http
|
|
initialDelaySeconds: 90
|
|
periodSeconds: 20
|
|
timeoutSeconds: 10
|
|
failureThreshold: 6
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 6
|
|
resources:
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: /opt/yacy_search_server/DATA
|
|
{{- if .Values.yacy.configFile }}
|
|
- name: config
|
|
mountPath: /opt/yacy_search_server/defaults/yacy.conf
|
|
subPath: yacy.conf
|
|
{{- end }}
|
|
volumes:
|
|
- name: data
|
|
{{- if .Values.persistence.enabled }}
|
|
persistentVolumeClaim:
|
|
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ include "yacy.fullname" . }}-data{{- end }}
|
|
{{- else }}
|
|
emptyDir: {}
|
|
{{- end }}
|
|
{{- if .Values.yacy.configFile }}
|
|
- name: config
|
|
configMap:
|
|
name: {{ include "yacy.fullname" . }}-config
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.affinity }}
|
|
affinity:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }} |