-
Notifications
You must be signed in to change notification settings - Fork 539
/
Copy pathconfig-https.yaml
80 lines (72 loc) · 2.14 KB
/
config-https.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
target: all
stream_over_http_enabled: true
server:
http_listen_port: 3200
tls_cipher_suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
tls_min_version: VersionTLS12
grpc_tls_config:
cert_file: /shared/tls.crt
key_file: /shared/tls.key
client_auth_type: VerifyClientCertIfGiven
client_ca_file: /shared/ca.crt
http_tls_config:
cert_file: /shared/tls.crt
key_file: /shared/tls.key
client_auth_type: VerifyClientCertIfGiven
client_ca_file: /shared/ca.crt
internal_server:
enable: true
http_listen_port: 3201
distributor:
receivers:
jaeger:
protocols:
grpc:
endpoint: "tempo:14250"
ingester:
lifecycler:
address: 127.0.0.1
ring:
kvstore:
store: inmemory
replication_factor: 1
final_sleep: 0s
trace_idle_period: 1ms
max_block_duration: 1h
complete_block_timeout: 1h
flush_check_period: 1ms
storage:
trace:
backend: gcs
gcs:
bucket_name: tempo
endpoint: https://tempo_e2e-gcs:4443/storage/v1/
insecure: true
pool:
max_workers: 10
queue_depth: 1000
overrides:
user_configurable_overrides:
enabled: true
poll_interval: 10s
client:
backend: gcs
# fsouza/fake-gcs-server does not support versioning
confirm_versioning: false
gcs:
bucket_name: tempo
endpoint: https://tempo_e2e-gcs:4443/storage/v1/
insecure: true
ingester_client:
grpc_client_config:
tls_enabled: true
tls_insecure_skip_verify: true
tls_cipher_suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
tls_min_version: VersionTLS12
querier:
frontend_worker:
grpc_client_config:
tls_enabled: true
tls_insecure_skip_verify: true
tls_cipher_suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
tls_min_version: VersionTLS12