Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/getting-started/production/multi-cluster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -582,11 +582,13 @@ Clustered OpenSearch using the OpenSearch Operator for high availability.
Install OpenSearch Operator:

```bash
helm upgrade --install opensearch-operator \
oci://ghcr.io/opensearch-project/helm-charts/opensearch-operator \
helm repo add opensearch-operator https://opensearch-project.github.io/opensearch-k8s-operator/
helm repo update
helm upgrade --install opensearch-operator opensearch-operator/opensearch-operator \
--create-namespace \
--kube-context $OP_CONTEXT \
--namespace openchoreo-observability-plane \
--create-namespace
--version 2.8.0
```

Wait for the operator to be ready:
Expand Down
8 changes: 5 additions & 3 deletions docs/getting-started/production/single-cluster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -609,10 +609,12 @@ Clustered OpenSearch using the OpenSearch Operator for high availability.
Install OpenSearch Operator:

```bash
helm upgrade --install opensearch-operator \
oci://ghcr.io/opensearch-project/helm-charts/opensearch-operator \
helm repo add opensearch-operator https://opensearch-project.github.io/opensearch-k8s-operator/
helm repo update
helm upgrade --install opensearch-operator opensearch-operator/opensearch-operator \
--create-namespace \
--namespace openchoreo-observability-plane \
--create-namespace
--version 2.8.0
```

Wait for the operator to be ready:
Expand Down