Skip to content

Commit 29eeeed

Browse files
committed
address feedback on PR
1 parent 5fb99ec commit 29eeeed

2 files changed

Lines changed: 29 additions & 2 deletions

File tree

docs/modules/opensearch/pages/usage-guide/opensearch-dashboards.adoc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ A basic `values.yaml` file to deploy OpenSearch Dashboards with this chart might
1010

1111
[source,yaml]
1212
----
13-
opensearchHosts: https://opensearch-nodes-cluster-manager:9200 # <1>
13+
opensearchHosts: https://opensearch.<opensearch-namespace>.svc.cluster.local:9200 # <1>
1414
image:
1515
repository: oci.stackable.tech/sdp/opensearch-dashboards # <2>
1616
tag: 3.1.0-stackable0.0.0-dev
17+
serviceAccount: # <3>
18+
create: false
19+
name: opensearch-serviceaccount
1720
----
18-
<1> Address of the OpenSearch cluster manager service deployed by the operator
21+
<1> Address of the OpenSearch Service deployed by the operator
1922
<2> Use the OCI image provided by the Stackable Data Platform
23+
<3> If running on OpenShift use the ServiceAccount of OpenSearch because its permissions are already configured to work on OpenShift.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
= OpenSearch Dashboards
2+
:description: OpenSearch Dashboards
3+
:official-helm-chart: https://docs.opensearch.org/latest/install-and-configure/install-dashboards/helm/
4+
5+
OpenSearch Dashboards is currently not managed by the operator but the Stackable Data Platform provides a supported OCI image.
6+
7+
One way to deploy OpenSearch Dashboards is by using the {official-helm-chart}[official Helm chart{external-link-icon}^].
8+
9+
A basic `values.yaml` file to deploy OpenSearch Dashboards with this chart might look like this:
10+
11+
[source,yaml]
12+
----
13+
opensearchHosts: https://opensearch.<opensearch-namespace>.svc.cluster.local:9200 # <1>
14+
image:
15+
repository: oci.stackable.tech/sdp/opensearch-dashboards # <2>
16+
tag: 3.1.0-stackable{{ versions.opensearch }}
17+
serviceAccount: # <3>
18+
create: false
19+
name: opensearch-serviceaccount
20+
----
21+
<1> Address of the OpenSearch Service deployed by the operator
22+
<2> Use the OCI image provided by the Stackable Data Platform
23+
<3> If running on OpenShift use the ServiceAccount of OpenSearch because its permissions are already configured to work on OpenShift.

0 commit comments

Comments
 (0)