You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _install-and-configure/install-opensearch/helm.md
+61-31Lines changed: 61 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,15 @@ The instructions here assume you have a Kubernetes cluster with Helm preinstalle
31
31
32
32
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.
33
33
34
+
For OpenSearch 2.12 or later, you must provide `OPENSEARCH_INITIAL_ADMIN_PASSWORD` to start the cluster. Customize the admin password in `values.yaml` under `extraEnvs`, as shown in the following example:
35
+
36
+
```yaml
37
+
extraEnvs:
38
+
- name: OPENSEARCH_INITIAL_ADMIN_PASSWORD
39
+
value: <custom-admin-password>
40
+
```
41
+
{% include copy.html %}
42
+
34
43
## Install OpenSearch using Helm
35
44
36
45
1. Add `opensearch` [helm-charts](https://github.com/opensearch-project/helm-charts) repository to Helm:
@@ -54,76 +63,91 @@ The default Helm chart deploys a three-node cluster. We recommend that you have
54
63
```
55
64
{% include copy.html %}
56
65
66
+
The available charts are provided in the response:
67
+
57
68
```bash
58
69
NAME CHART VERSION APP VERSION DESCRIPTION
59
-
opensearch/opensearch 1.0.7 1.0.0 A Helm chart for OpenSearch
60
-
opensearch/opensearch-dashboards1.0.41.0.0 A Helm chart for OpenSearch Dashboards
70
+
opensearch/opensearch 3.1.0 3.1.0 A Helm chart for OpenSearch
71
+
opensearch/opensearch-dashboards 3.1.0 3.1.0 A Helm chart for OpenSearch Dashboards
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
200
+
opensearch-3-1754992026 default 1 2025-08-12 10:47:06.02703 +0100 IST deployed opensearch-3.1.0 3.1.0
171
201
```
172
202
173
203
To delete or uninstall a deployment, run the following command:
174
204
175
205
```bash
176
-
helm delete opensearch-1-1629223146
206
+
helm delete opensearch-3-1754992026
177
207
```
178
208
{% include copy.html %}
179
209
180
-
For steps to install OpenSearch Dashboards, see [Helm to install OpenSearch Dashboards]({{site.url}}{{site.baseurl}}/dashboards/install/helm/).
210
+
For instructions on how to to install OpenSearch Dashboards, see [Helm to install OpenSearch Dashboards]({{site.url}}{{site.baseurl}}/dashboards/install/helm/).
0 commit comments