2021-08-09 16:53:04 -04:00
---
layout: default
title: Helm
2023-01-24 13:12:21 -05:00
parent: Installing OpenSearch
2021-08-09 16:53:04 -04:00
nav_order: 6
2022-12-05 15:13:41 -05:00
redirect_from:
- /opensearch/install/helm/
2021-08-09 16:53:04 -04:00
---
2023-01-23 14:09:16 -05:00
# Helm
2021-08-09 16:53:04 -04:00
2021-08-18 13:49:46 -04:00
Helm is a package manager that allows you to easily install and manage OpenSearch in a Kubernetes cluster. You can define your OpenSearch configurations in a YAML file and use Helm to deploy your applications in a version-controlled and reproducible way.
2021-08-09 16:53:04 -04:00
The Helm chart contains the resources described in the following table.
Resource | Description
:--- | :---
`Chart.yaml` | Information about the chart.
`values.yaml` | Default configuration values for the chart.
`templates` | Templates that combine with values to generate the Kubernetes manifest files.
The specification in the default Helm chart supports many standard use cases and setups. You can modify the default chart to configure your desired specifications and set Transport Layer Security (TLS) and role-based access control (RBAC).
For information about the default configuration, steps to configure security, and configurable parameters, see the
2021-11-12 08:39:43 -05:00
[README ](https://github.com/opensearch-project/helm-charts/blob/main/README.md ).
2021-08-09 16:53:04 -04:00
The instructions here assume you have a Kubernetes cluster with Helm preinstalled. See the [Kubernetes documentation ](https://kubernetes.io/docs/setup/ ) for steps to configure a Kubernetes cluster and the [Helm documentation ](https://helm.sh/docs/intro/install/ ) to install Helm.
{: .note }
2021-08-18 13:49:46 -04:00
## Prerequisites
2021-08-19 02:03:48 -04:00
The default Helm chart deploys a three-node cluster. We recommend that you have at least 8 GiB of memory available for this deployment. You can expect the deployment to fail if, say, you have less than 4 GiB of memory available.
2021-08-18 13:49:46 -04:00
2021-08-09 16:53:04 -04:00
## Install OpenSearch using Helm
2021-10-13 17:16:15 -04:00
1. Add `opensearch` [helm-charts ](https://github.com/opensearch-project/helm-charts ) repository to Helm:
2021-08-09 16:53:04 -04:00
```bash
2021-10-13 17:16:15 -04:00
helm repo add opensearch https://opensearch-project.github.io/helm-charts/
2021-08-09 16:53:04 -04:00
```
2021-10-20 16:48:03 -04:00
1. Update the available charts locally from charts repositories:
2021-10-13 17:16:15 -04:00
```bash
helm repo update
```
2021-10-20 16:48:03 -04:00
1. To search for the OpenSearch-related Helm charts:
2021-10-13 17:16:15 -04:00
```bash
helm search repo opensearch
```
```bash
NAME CHART VERSION APP VERSION DESCRIPTION
opensearch/opensearch 1.0.7 1.0.0 A Helm chart for OpenSearch
opensearch/opensearch-dashboards 1.0.4 1.0.0 A Helm chart for OpenSearch Dashboards
```
1. Deploy OpenSearch:
```bash
2021-10-13 17:20:42 -04:00
helm install my-deployment opensearch/opensearch
2021-10-13 17:16:15 -04:00
```
You can also build the `opensearch-1.0.0.tgz` file manually:
2021-08-09 16:53:04 -04:00
1. Change to the `opensearch` directory:
```bash
2021-09-14 14:10:11 -04:00
cd charts/opensearch
2021-08-09 16:53:04 -04:00
```
1. Package the Helm chart:
```bash
helm package .
```
2021-08-18 13:49:46 -04:00
1. Deploy OpenSearch:
2021-08-09 16:53:04 -04:00
```bash
helm install --generate-name opensearch-1.0.0.tgz
```
2021-08-18 13:49:46 -04:00
The output shows you the specifications instantiated from the install.
To customize the deployment, pass in the values that you want to override with a custom YAML file:
2021-08-09 16:53:04 -04:00
2021-08-18 13:49:46 -04:00
```bash
helm install --values=customvalues.yaml opensearch-1.0.0.tgz
```
2021-08-09 16:53:04 -04:00
#### Sample output
2021-08-18 13:49:46 -04:00
```yaml
NAME: opensearch-1-1629223146
LAST DEPLOYED: Tue Aug 17 17:59:07 2021
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Watch all cluster members come up.
$ kubectl get pods --namespace=default -l app=opensearch-cluster-master -w
```
2021-08-09 16:53:04 -04:00
2021-08-18 13:49:46 -04:00
To make sure your OpenSearch pod is up and running, run the following command:
2021-08-09 16:53:04 -04:00
```bash
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
opensearch-cluster-master-0 1/1 Running 0 3m56s
opensearch-cluster-master-1 1/1 Running 0 3m56s
opensearch-cluster-master-2 1/1 Running 0 3m56s
```
2021-08-18 13:49:46 -04:00
To access the OpenSearch shell:
2021-08-09 16:53:04 -04:00
```bash
$ kubectl exec -it opensearch-cluster-master-0 -- /bin/bash
```
2021-08-18 13:49:46 -04:00
You can send requests to the pod to verify that OpenSearch is up and running:
2021-08-09 16:53:04 -04:00
2021-08-18 13:49:46 -04:00
```json
2021-08-09 16:53:04 -04:00
$ curl -XGET https://localhost:9200 -u 'admin:admin' --insecure
2021-08-18 13:49:46 -04:00
{
"name" : "opensearch-cluster-master-1",
"cluster_name" : "opensearch-cluster",
"cluster_uuid" : "hP2gq5bPS3SLp8Z7wXm8YQ",
"version" : {
"distribution" : "opensearch",
"number" : "1.0.0",
"build_type" : "tar",
"build_hash" : "34550c5b17124ddc59458ef774f6b43a086522e3",
"build_date" : "2021-07-02T23:22:21.383695Z",
"build_snapshot" : false,
"lucene_version" : "8.8.2",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "The OpenSearch Project: https://opensearch.org/"
}
2021-08-09 16:53:04 -04:00
```
## Uninstall using Helm
2021-08-18 13:49:46 -04:00
To identify the OpenSearch deployment that you want to delete:
2021-08-09 16:53:04 -04:00
```bash
2021-08-18 13:49:46 -04:00
$ helm list
NAME NAMESPACEREVISIONUPDATED STATUS CHART APP VERSION
opensearch-1-1629223146 default 1 2021-08-17 17:59:07.664498239 +0000 UTCdeployedopensearch-1.0.0 1.0.0
2021-08-09 16:53:04 -04:00
```
2021-08-18 13:49:46 -04:00
To delete or uninstall a deployment, run the following command:
2021-08-09 16:53:04 -04:00
```bash
2021-08-18 13:49:46 -04:00
helm delete opensearch-1-1629223146
2021-08-09 16:53:04 -04:00
```
2021-08-18 13:49:46 -04:00
2022-12-05 15:13:41 -05:00
For steps to install OpenSearch Dashboards, see [Helm to install OpenSearch Dashboards ]({{site.url}}{{site.baseurl}}/dashboards/install/helm/ ).