Skip to content

Commit

Permalink
Document secretName support for Ingress TLS (#308)
Browse files Browse the repository at this point in the history
* Add documentation on how to configure the Ingress with the operator

This commit adds a new section to 'Configuring the CRD' with examples on how to disable the ingress and how to add a tls certificate to it.

Issue #307

Signed-off-by: Cedric Kring <[email protected]>

* Move TLS documentation to "Accessing the Jaeger Console (UI)"

Signed-off-by: Cedric Kring <[email protected]>

* Change "to a secret" to "of a secret"

Signed-off-by: Cedric Kring <[email protected]>
  • Loading branch information
cedrickring authored and yurishkuro committed Nov 13, 2019
1 parent 0577202 commit 779c512
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/docs/next-release/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,18 @@ simplest-query * 192.168.122.34 80 3m

In this example, the Jaeger UI is available at http://192.168.122.34.

To enable TLS in the Ingress, pass a `secretName` with the name of a [Secret](https://kubernetes.io/docs/concepts/configuration/secret/) containing the TLS certificate:

```yaml
apiVersion: jaegertracing.io/v1
kind: Jaeger
metadata:
name: ingress-with-tls
spec:
ingress:
secretName: my-tls-secret
```

## OpenShift

When the Operator is running on OpenShift, the Operator will automatically create a `Route` object for the query services. Use the following command to check the hostname/port:
Expand Down

0 comments on commit 779c512

Please sign in to comment.