Difference between revisions of "Helm install elasticsearch elastic/elasticsearch"

From wikieduonline
Jump to navigation Jump to search
(Created page with "{{lc}} == See also == * {{helm repo add}} * {{ES}} Category:Elasticsearch Category:helm")
 
 
(41 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
  
 +
== Example Nov 2023 ==
 +
helm install elasticsearch elastic/elasticsearch
 +
NAME: elasticsearch
 +
LAST DEPLOYED: Thu Nov 30 18:38:00 2023
 +
NAMESPACE: default
 +
STATUS: deployed
 +
REVISION: 1
 +
NOTES:
 +
1. Watch all cluster members come up.
 +
  $ kubectl get pods --namespace=default -l app=elasticsearch-master -w
 +
2. Retrieve elastic user's password.
 +
  $ kubectl get secrets --namespace=default elasticsearch-master-credentials -ojsonpath='{.data.password}' | base64 -d
 +
3. Test cluster health using Helm test.
 +
  $ helm --namespace=default test elasticsearch
 +
 +
== Example Sep 2022 ==
 +
helm install elasticsearch elastic/elasticsearch
 +
[[helm install]] elasticsearch elastic/elasticsearch
 +
NAME: elasticsearch
 +
LAST DEPLOYED: Tue Sep 20 17:15:38 2022
 +
NAMESPACE: default
 +
STATUS: deployed
 +
REVISION: 1
 +
NOTES:
 +
1. Watch all cluster members come up.
 +
  $ [[kubectl get pods --namespace=default -l app=elasticsearch-master]] -w2. Test cluster health using Helm test.
 +
  $ [[helm --namespace=default test elasticsearch]]
 +
 +
== Configuration options ==
 +
* https://github.com/elastic/helm-charts/blob/main/elasticsearch/README.md#configuration
 +
* <code>[[extraVolumes]]</code>
 +
* <code>[[extraVolumeMounts]]</code>
 +
 +
== Changing values ==
 +
* <code>[[helm upgrade --install]] elasticsearch elastic/elasticsearch --set [[replicas]]=2</code>
 +
 +
== Related ==
 +
* [[Kibana]]
 +
* <code>[[helm repo add elastic https://helm.elastic.co]]</code>
 +
* <code>[[helm install kibana elastic/kibana]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 17:39, 30 November 2023

Example Nov 2023[edit]

helm install elasticsearch elastic/elasticsearch
NAME: elasticsearch
LAST DEPLOYED: Thu Nov 30 18:38:00 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
NOTES:
1. Watch all cluster members come up.
  $ kubectl get pods --namespace=default -l app=elasticsearch-master -w
2. Retrieve elastic user's password.
  $ kubectl get secrets --namespace=default elasticsearch-master-credentials -ojsonpath='{.data.password}' | base64 -d
3. Test cluster health using Helm test.
  $ helm --namespace=default test elasticsearch

Example Sep 2022[edit]

helm install elasticsearch elastic/elasticsearch
helm install elasticsearch elastic/elasticsearch
NAME: elasticsearch
LAST DEPLOYED: Tue Sep 20 17:15:38 2022
NAMESPACE: default
STATUS: deployed
REVISION: 1
NOTES:
1. Watch all cluster members come up.
  $ kubectl get pods --namespace=default -l app=elasticsearch-master -w2. Test cluster health using Helm test.
  $ helm --namespace=default test elasticsearch

Configuration options[edit]

Changing values[edit]

Related[edit]

See also[edit]

Advertising: