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

Add TLS docs #813

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
42 changes: 42 additions & 0 deletions docs/tls.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# TLS Overview

## compactor, ingester, querier
Port | Service | TLS Enabled | TLS Certificate | Verify Client Cert
----- | --------------------- | ------------------------------- | ------------------- | ------------------
3200 | Tempo API (HTTP) | `featureGates.httpEncryption` | internal | yes
3101 | Tempo Internal (HTTP) | `featureGates.httpEncryption` | internal | no

## distributor
Port | Service | TLS Enabled | TLS Certificate | Verify Client Cert
----- | --------------------- | ------------------------------- | ------------------- | ------------------
3200 | Tempo API (HTTP) | `featureGates.httpEncryption` | internal | yes
3101 | Tempo Internal (HTTP) | `featureGates.httpEncryption` | internal | no
4317 | OTLP/gRPC | `spec.template.distributor.tls` | custom | no
4318 | OTLP/HTTP | `spec.template.distributor.tls` | custom | no
14268 | jaeger/thrift http | `spec.template.distributor.tls` | custom | no
6831 | jaeger/thrift compact | no | - | -
6832 | jaeger/thrift binary | no | - | -
14250 | jaeger/grpc | `spec.template.distributor.tls` | custom | no
9411 | zipkin | `spec.template.distributor.tls` | custom | no

## query-frontend
Port | Service | TLS Enabled | TLS Certificate | Verify Client Cert
----- | --------------------- | ------------------------------- | ------------------- | ------------------
3200 | Tempo API (HTTP) | if `httpEncryption` and gateway | internal | yes
3101 | Tempo Internal (HTTP) | `featureGates.httpEncryption` | internal | no
16686 | Jaeger UI (HTTP) | if `httpEncryption` and gateway | internal | yes
16685 | Jaeger UI (gRPC) | if `httpEncryption` and gateway | internal | yes

## gateway
Port | Service | TLS Enabled | TLS Certificate | Verify Client Cert
----- | --------------------- | ------------------------------- | ------------------- | ------------------
8080 | public (HTTP) | `servingCertsService` | service-ca-operator | no
8090 | public (gRPC) | `servingCertsService` | service-ca-operator | no
8081 | internal (HTTP) | `featureGates.httpEncryption` | internal | no

## TLS Clients
Client | TLS Enabled | TLS Certificate | Notes
------ | ------------------ | --------------- | -----
S3 | `spec.storage.tls` | custom | only custom CA is supported
Azure | no | - |
GCP | no | - |
Copy link
Collaborator

Choose a reason for hiding this comment

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

Does this mean TLS cannot be used for those storages?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Tempo doesn't expose any TLS settings for Azure or GCP: https://grafana.com/docs/tempo/latest/configuration/#storage

When using https:// for the endpoint it will use TLS, but it'll use the certificate bundle of the container. I'll clarify that.

Loading