This Helm chart will install Elasticsearch (docs, code) and is based from the official Helm chart (code).
- With Helm CLI (see README for requirements)
# install with default parameters
helm upgrade --install elasticsearch devpro/elasticsearch --create-namespace \
--namespace elasticsearch
# checks all pods are running after some time
kubectl get pod -n elasticsearch
# if needed, deletes the chart
helm uninstall elasticsearch -n elasticsearch
kubectl delete ns elasticsearch
👷 TODO
# adds helm chart repository
helm repo add elastic https://helm.elastic.co
# searches for the latest version
helm search repo -l elasticsearch
# manual: update version number in Chart.yaml
# updates Chart.lock
helm dependency update
# checks the Kubernetes objects generated from the chart
helm template elasticsearch . -f values.yaml \
--namespace elasticsearch > temp.yaml
👷 TODO