Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how to disable TLS #1341

Merged
merged 2 commits into from
Jul 23, 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
19 changes: 19 additions & 0 deletions docs/accessing-services.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ For each resource, `Elasticsearch`, `Kibana` or `ApmServer`, the operator manage
> kubectl get svc

NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
hulk-apm-http ClusterIP 10.19.212.105 <none> 8200:31000/TCP 1m
hulk-es-http ClusterIP 10.19.252.160 <none> 9200:31320/TCP 1m
hulk-kb-http ClusterIP 10.19.247.151 <none> 5601:31380/TCP 1m
----
Expand Down Expand Up @@ -76,6 +77,7 @@ spec:
> kubectl get svc

NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
hulk-apm-http ClusterIP 10.19.212.105 35.176.227.106 8200:31000/TCP 1m
hulk-es-http LoadBalancer 10.19.252.160 35.198.131.115 9200:31320/TCP 1m
hulk-kb-http LoadBalancer 10.19.247.151 35.242.197.228 5601:31380/TCP 1m
----
Expand Down Expand Up @@ -161,6 +163,23 @@ spec:
secretName: my-cert
----

[float]
[id="{p}-disable-tls"]
==== Disable TLS

You can explicitly disable TLS for Kibana or APM Server if you want to.

[source,yaml]
----
spec:
http:
tls:
selfSignedCertificate:
disabled: true
----

TLS cannot be disabled for Elasticsearch.

[float]
[id="{p}-request-elasticsearch-endpoint"]
=== Requesting the Elasticsearch endpoint
Expand Down