elasticsearchHow do I deploy an Elasticsearch Helm chart?
Deploying an Elasticsearch Helm chart is a simple process.
- First, you need to add the Elastic Helm Chart repository to your local Helm instance by running the following command:
helm repo add elastic https://helm.elastic.co
- Next, you need to update your local Helm repository by running the following command:
helm repo update
- Then, you can install the Elasticsearch Helm chart by running the following command:
helm install my-release elastic/elasticsearch
- You can then verify the installation by running the following command:
helm list
The output should look like this:
NAME REVISION UPDATED STATUS CHART APP VERSION NAMESPACE
my-release 1 Thu Jul 30 10:29:43 2020 DEPLOYED elasticsearch-7.7.1 7.7.1 default
- Finally, you can access the Elasticsearch instance by running the following command:
kubectl get service
The output should look like this:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
my-release ClusterIP 10.43.246.129 <none> 9200/TCP 57s
Helpful links
More of Elasticsearch
- How do I configure elasticsearch xpack.security.transport.ssl?
- How can I use YouTube to learn about Elasticsearch?
- How do I download Elasticsearch for Windows?
- What are the system requirements for running Elasticsearch?
- How do I set up an Elasticsearch Yum repository?
- How do I determine which version of Elasticsearch I am using?
- How do I use the Elasticsearch UI?
- How can I troubleshoot an Elasticsearch cluster with a yellow status?
- How can I use regular expressions with Elasticsearch?
- How can I perform a case-insensitive wildcard search using Elasticsearch?
See more codes...