Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
update more doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlrt committed Sep 7, 2022
1 parent 05f633f commit 80e4ada
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 5 additions & 3 deletions kibana/examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ This example deploy Kibana 8.4.1 using [default values][].

* Deploy Kibana chart with the default values: `make install`

* You can now setup a port forward to query Kibana indices:
* You can now retrieve the `elastic` user password and setup a port forward to connect Kibana:

```
kubectl port-forward svc/elasticsearch-master 9200
curl localhost:9200/_cat/indices
# Get elastic user password:
kubectl get secrets --namespace=default elasticsearch-master-credentials -ojsonpath='{.data.password}' | base64 -d
# Setup port forward
kubectl port-forward svc/helm-kibana-default-kibana 5601
```


Expand Down
10 changes: 6 additions & 4 deletions kibana/examples/security/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ Elasticsearch (see [values][]).

* Deploy [Elasticsearch Helm chart][].

* Deploy Kibana chart with security: `make install`
* Deploy Kibana chart with security: `make secrets install`

* You can now setup a port forward to query Kibana indices:
* You can now retrieve the `elastic` user password and setup a port forward to connect Kibana:

```
kubectl port-forward svc/security-master 9200
curl -u elastic:changeme https://localhost:9200/_cat/indices
# Get elastic user password:
kubectl get secrets --namespace=default security-master-credentials -ojsonpath='{.data.password}' | base64 -d
# Setup port forward
kubectl port-forward svc/helm-kibana-security-kibana 5601
```


Expand Down

0 comments on commit 80e4ada

Please sign in to comment.