12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {{ $values := (. | mustDeepCopy) }}
- {{ $_ := set $values "common" (dict "nameSuffix" "elasticsearch") }}
- {{ include "common.deployment.common_config" $values | nindent 0 }}
- spec: {{ include "common.deployment.common_spec" $values | nindent 2 }}
- template: {{ include "common.deployment.pod.metadata" $values | nindent 4 }}
- spec:
- containers:
- - name: {{ .Chart.Name }}
- {{ include "common.containers.imageConfig" .Values.elasticsearch.image | nindent 10 }}
- volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" (dict "appVolumeMounts" .Values.elasticSearchAppVolumeMounts ) | nindent 12 }}
- ports:
- - name: es-port
- containerPort: 9200
- env:
- {{ $envList := (default list .Values.environmentVariables) }}
- {{ $envList = mustAppend $envList (dict "name" "discovery.type" "value" "single-node") }}
- {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }}
- livenessProbe:
- httpGet:
- path: /
- port: 9200
- initialDelaySeconds: 10
- periodSeconds: 10
- timeoutSeconds: 5
- failureThreshold: 5
- successThreshold: 1
- readinessProbe:
- httpGet:
- path: /
- port: 9200
- initialDelaySeconds: 10
- periodSeconds: 10
- timeoutSeconds: 5
- failureThreshold: 5
- successThreshold: 2
- startupProbe:
- httpGet:
- path: /
- port: 9200
- initialDelaySeconds: 10
- periodSeconds: 5
- timeoutSeconds: 2
- failureThreshold: 60
- successThreshold: 1
- {{ include "common.networking.dnsConfiguration" .Values | nindent 6 }}
- volumes: {{ include "common.storage.configureAppVolumes" (dict "appVolumeMounts" .Values.elasticSearchAppVolumeMounts "emptyDirVolumes" .Values.emptyDirVolumes "ixVolumes" .Values.ixVolumes) | nindent 8 }}
|