Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Commit 173d360

Browse files
committed
[elasticsearch] remove masterTerminationFix
This commit removes the `masterTerminationFix` side-car container introduced in elastic#63 to fix slow elections issues when master node is deleted. This workaround is no more needed since Elasticsearch 7.2.
1 parent 1332bb9 commit 173d360

File tree

4 files changed

+0
-99
lines changed

4 files changed

+0
-99
lines changed

elasticsearch/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ support multiple versions with minimal changes.
135135
| `labels` | Configurable [labels][] applied to all Elasticsearch pods | `{}` |
136136
| `lifecycle` | Allows you to add [lifecycle hooks][]. See [values.yaml][] for an example of the formatting | `{}` |
137137
| `masterService` | The service name used to connect to the masters. You only need to set this if your master `nodeGroup` is set to something other than `master`. See [Clustering and Node Discovery][] for more information | `""` |
138-
| `masterTerminationFix` | A workaround needed for Elasticsearch < 7.2 to prevent master status being lost during restarts [#63][] | `false` |
139138
| `maxUnavailable` | The [maxUnavailable][] value for the pod disruption budget. By default this will prevent Kubernetes from having more than 1 unhealthy pod in the node group | `1` |
140139
| `minimumMasterNodes` | The value for [discovery.zen.minimum_master_nodes][]. Should be set to `(master_eligible_nodes / 2) + 1`. Ignored in Elasticsearch versions >= 7 | `2` |
141140
| `nameOverride` | Overrides the `clusterName` when used in the naming of resources | `""` |

elasticsearch/templates/statefulset.yaml

-58
Original file line numberDiff line numberDiff line change
@@ -362,64 +362,6 @@ spec:
362362
{{ toYaml .Values.extraVolumeMounts | indent 10 }}
363363
{{- end }}
364364
{{- end }}
365-
{{- if .Values.masterTerminationFix }}
366-
{{- if eq .Values.roles.master "true" }}
367-
# This sidecar will prevent slow master re-election
368-
# https://github.com/elastic/helm-charts/issues/63
369-
- name: elasticsearch-master-graceful-termination-handler
370-
image: "{{ .Values.image }}:{{ .Values.imageTag }}"
371-
imagePullPolicy: "{{ .Values.imagePullPolicy }}"
372-
command:
373-
- "sh"
374-
- -c
375-
- |
376-
#!/usr/bin/env bash
377-
set -eo pipefail
378-
379-
http () {
380-
local path="${1}"
381-
if [ -n "${ELASTIC_USERNAME}" ] && [ -n "${ELASTIC_PASSWORD}" ]; then
382-
BASIC_AUTH="-u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD}"
383-
else
384-
BASIC_AUTH=''
385-
fi
386-
curl -XGET -s -k --fail ${BASIC_AUTH} {{ .Values.protocol }}://{{ template "elasticsearch.masterService" . }}:{{ .Values.httpPort }}${path}
387-
}
388-
389-
cleanup () {
390-
while true ; do
391-
local master="$(http "/_cat/master?h=node" || echo "")"
392-
if [[ $master == "{{ template "elasticsearch.masterService" . }}"* && $master != "${NODE_NAME}" ]]; then
393-
echo "This node is not master."
394-
break
395-
fi
396-
echo "This node is still master, waiting gracefully for it to step down"
397-
sleep 1
398-
done
399-
400-
exit 0
401-
}
402-
403-
trap cleanup SIGTERM
404-
405-
sleep infinity &
406-
wait $!
407-
resources:
408-
{{ toYaml .Values.sidecarResources | indent 10 }}
409-
env:
410-
- name: NODE_NAME
411-
valueFrom:
412-
fieldRef:
413-
fieldPath: metadata.name
414-
{{- if .Values.extraEnvs }}
415-
{{ toYaml .Values.extraEnvs | indent 10 }}
416-
{{- end }}
417-
{{- if .Values.envFrom }}
418-
envFrom:
419-
{{ toYaml .Values.envFrom | indent 10 }}
420-
{{- end }}
421-
{{- end }}
422-
{{- end }}
423365
{{- if .Values.lifecycle }}
424366
lifecycle:
425367
{{ toYaml .Values.lifecycle | indent 10 }}

elasticsearch/tests/elasticsearch_test.py

-37
Original file line numberDiff line numberDiff line change
@@ -592,26 +592,6 @@ def test_adding_resources_to_initcontainer():
592592
}
593593

594594

595-
def test_adding_resources_to_sidecar_container():
596-
config = """
597-
masterTerminationFix: true
598-
sidecarResources:
599-
limits:
600-
cpu: "100m"
601-
memory: "128Mi"
602-
requests:
603-
cpu: "100m"
604-
memory: "128Mi"
605-
"""
606-
r = helm_template(config)
607-
i = r["statefulset"][uname]["spec"]["template"]["spec"]["containers"][1]
608-
609-
assert i["resources"] == {
610-
"requests": {"cpu": "100m", "memory": "128Mi"},
611-
"limits": {"cpu": "100m", "memory": "128Mi"},
612-
}
613-
614-
615595
def test_adding_a_node_affinity():
616596
config = """
617597
nodeAffinity:
@@ -937,23 +917,6 @@ def test_adding_load_balancer_source_ranges():
937917
assert ranges[1] == "192.168.1.0/24"
938918

939919

940-
def test_master_termination_fixed_enabled():
941-
config = ""
942-
943-
r = helm_template(config)
944-
945-
assert len(r["statefulset"][uname]["spec"]["template"]["spec"]["containers"]) == 1
946-
947-
config = """
948-
masterTerminationFix: true
949-
"""
950-
951-
r = helm_template(config)
952-
953-
c = r["statefulset"][uname]["spec"]["template"]["spec"]["containers"][1]
954-
assert c["name"] == "elasticsearch-master-graceful-termination-handler"
955-
956-
957920
def test_lifecycle_hooks():
958921
config = ""
959922
r = helm_template(config)

elasticsearch/values.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,6 @@ ingress:
255255
nameOverride: ""
256256
fullnameOverride: ""
257257

258-
# https://github.com/elastic/helm-charts/issues/63
259-
masterTerminationFix: false
260-
261258
lifecycle: {}
262259
# preStop:
263260
# exec:

0 commit comments

Comments
 (0)