minor fixes
This commit is contained in:
parent
bdf53c9117
commit
b6f61a753c
|
@ -33,10 +33,10 @@ The instructions here assume you have a Kubernetes cluster with Helm preinstalle
|
||||||
git clone https://github.com/opensearch-project/opensearch-devops.git
|
git clone https://github.com/opensearch-project/opensearch-devops.git
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Change to the `opensearch-dashboards` directory:
|
1. Change to the `opensearch` directory:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd Helm/opensearch-dashboards
|
cd Helm/opensearch
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Package the Helm chart:
|
1. Package the Helm chart:
|
||||||
|
@ -48,25 +48,27 @@ The instructions here assume you have a Kubernetes cluster with Helm preinstalle
|
||||||
1. Deploy Elasticsearch:
|
1. Deploy Elasticsearch:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm install --generate-name opensearch-dashboards-1.0.0.tgz
|
helm install --generate-name opensearch-1.0.0.tgz
|
||||||
```
|
```
|
||||||
|
|
||||||
The output shows you the specifications instantiated from the install.
|
The output shows you the specifications instantiated from the install.
|
||||||
To customize the deployment, pass in the values that you want to override with a custom YAML file:
|
To customize the deployment, pass in the values that you want to override with a custom YAML file:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm install --values=customvalues.yaml opensearch-dashboards-1.0.0.tgz
|
helm install --values=customvalues.yaml opensearch-1.0.0.tgz
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Sample output
|
#### Sample output
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
NAME: opensearch-dashboards-1-1628184200
|
NAME: opensearch-1-1628710514
|
||||||
LAST DEPLOYED: Thu Aug 5 13:23:25 2021
|
LAST DEPLOYED: Wed Aug 11 19:35:15 2021
|
||||||
NAMESPACE: default
|
NAMESPACE: default
|
||||||
STATUS: deployed
|
STATUS: deployed
|
||||||
REVISION: 1
|
REVISION: 1
|
||||||
TEST SUITE: None
|
TEST SUITE: None
|
||||||
|
NOTES:
|
||||||
|
Watch all cluster members come up.
|
||||||
```
|
```
|
||||||
|
|
||||||
To make sure your Elasticsearch pod is up and running, run the following command:
|
To make sure your Elasticsearch pod is up and running, run the following command:
|
||||||
|
@ -74,10 +76,9 @@ To make sure your Elasticsearch pod is up and running, run the following command
|
||||||
```bash
|
```bash
|
||||||
$ kubectl get pods
|
$ kubectl get pods
|
||||||
NAME READY STATUS RESTARTS AGE
|
NAME READY STATUS RESTARTS AGE
|
||||||
opensearch-cluster-master-0 1/1 Running 0 3m56s
|
opensearch-cluster-master-0 0/1 ContainerCreating 0 34s
|
||||||
opensearch-cluster-master-1 1/1 Running 0 3m56s
|
opensearch-cluster-master-1 0/1 ContainerCreating 0 34s
|
||||||
opensearch-cluster-master-2 1/1 Running 0 3m56s
|
opensearch-cluster-master-2 0/1 ContainerCreating 0 34s
|
||||||
opensearch-dashboards-1-1628184109-584ff47c54-gghf2 1/1 Running 0 5m25s
|
|
||||||
```
|
```
|
||||||
|
|
||||||
To access the Elasticsearch shell:
|
To access the Elasticsearch shell:
|
||||||
|
|
Loading…
Reference in New Issue