Skip to content

Commit 3a36f31

Browse files
nilushancostaLakshanSS
authored andcommitted
Fix OpenSearch operator installation command
1 parent 42bad8f commit 3a36f31

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

docs/getting-started/production/multi-cluster.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -582,11 +582,13 @@ Clustered OpenSearch using the OpenSearch Operator for high availability.
582582
Install OpenSearch Operator:
583583

584584
```bash
585-
helm upgrade --install opensearch-operator \
586-
oci://ghcr.io/opensearch-project/helm-charts/opensearch-operator \
585+
helm repo add opensearch-operator https://opensearch-project.github.io/opensearch-k8s-operator/
586+
helm repo update
587+
helm upgrade --install opensearch-operator opensearch-operator/opensearch-operator \
588+
--create-namespace \
587589
--kube-context $OP_CONTEXT \
588590
--namespace openchoreo-observability-plane \
589-
--create-namespace
591+
--version 2.8.0
590592
```
591593

592594
Wait for the operator to be ready:

docs/getting-started/production/single-cluster.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,10 +609,12 @@ Clustered OpenSearch using the OpenSearch Operator for high availability.
609609
Install OpenSearch Operator:
610610

611611
```bash
612-
helm upgrade --install opensearch-operator \
613-
oci://ghcr.io/opensearch-project/helm-charts/opensearch-operator \
612+
helm repo add opensearch-operator https://opensearch-project.github.io/opensearch-k8s-operator/
613+
helm repo update
614+
helm upgrade --install opensearch-operator opensearch-operator/opensearch-operator \
615+
--create-namespace \
614616
--namespace openchoreo-observability-plane \
615-
--create-namespace
617+
--version 2.8.0
616618
```
617619

618620
Wait for the operator to be ready:

0 commit comments

Comments
 (0)