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

[elasticsearch] Update security example docs to match reality #170

Merged
merged 1 commit into from
Jun 18, 2019
Merged
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
[elasticsearch] Update security example docs to match reality
Over time the security example changed a bit and these instructions were
no longer valid or working.

Fixes: #166
  • Loading branch information
Crazybus committed Jun 17, 2019
commit f48b3aa56c808aefc5233f7894bb3afc29853af3
20 changes: 8 additions & 12 deletions elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,33 +129,29 @@ make

### Security

A cluster with X-Pack security enabled
A cluster with security enabled

* Generate SSL certificates following the [official docs](https://www.elastic.co/guide/en/elasticsearch/reference/6.7/configuring-tls.html#node-certificates)
* Create Kubernetes secrets for authentication credentials and certificates
* Generate SSL certificates following the [official docs](https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-tls.html#node-certificates)
* Create Kubernetes secrets for authentication credentials and certificates. Replace `$YOUR_SECRET_PASSWORD` with your own password.
```
kubectl create secret generic elastic-credentials --from-literal=password=changeme --from-literal=username=elastic
kubectl create secret generic elastic-credentials --from-literal=password=$YOUR_SECRET_PASSWORD --from-literal=username=elastic
kubectl create secret generic elastic-certificates --from-file=elastic-certificates.p12
```
* Deploy!
```
cd examples/security
make
helm upgrade --wait --timeout=600 --install --values ./security.yml elasticsearch ../../
```
* Attach into one of the containers

```
kubectl exec -ti $(kubectl get pods -l release=helm-es-security -o name | awk -F'/' '{ print $NF }' | head -n 1) bash
kubectl exec -ti $(kubectl get --no-headers=true pods -l release=elasticsearch -o custom-columns=:metadata.name | head -n 1 ) bash
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😱

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One step closer to being able to do basic operations without needing third party tooling!

```

* Test that authentication is now enabled
```
curl 'http://localhost:9200/' # This one will fail
curl -u elastic:changeme 'http://localhost:9200/'
```
* Install some test data to play around with
```
wget https://download.elastic.co/demos/kibana/gettingstarted/logs.jsonl.gz && gunzip logs.jsonl.gz && curl -u elastic:changeme -H 'Content-Type: application/x-ndjson' -XPOST 'localhost:9200/_bulk?pretty' --data-binary @logs.jsonl
curl -k 'https://localhost:9200/' # This one will fail
curl -k -u $ELASTIC_USERNAME:$ELASTIC_PASSWORD https://localhost:9200/
```

### FAQ
Expand Down