Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.25 KB

cluster-chart.md

File metadata and controls

37 lines (26 loc) · 1.25 KB

Install OpenSearchCluster Using Helm

After installing the operator (please refer to the User Guide for details) you can deploy OpenSearch clusters using a separate helm chart.

Install Chart

helm install [RELEASE_NAME] opensearch-operator/opensearch-cluster

Uninstall Chart

helm uninstall [RELEASE_NAME]

Upgrade Chart

helm repo update
helm upgrade [RELEASE_NAME] opensearch-operator/opensearch-cluster

Configuring OpenSearch Cluster

By default, the installation will deploy a node pool consisting of three master nodes with the dashboard enabled. For the entire configuration, check helm chart values.

To further customize your OpenSearchCluster installation, you can utilize configuration overrides and modify your values.yaml, this allows you to tailor various aspects of the installation to meet your specific requirements. For instance, if you need to change the httpPort to 9300, this can be achieved by setting OpenSearchClusterSpec.general.httpPort to 9300 in the helm chart values.

OpenSearchClusterSpec:
  general:
    httpPort: "9300"
    version: 2.3.0
    serviceName: "my-cluster"