Skip to content

Commit

Permalink
Update IPv6 jsonnet and docs after dskit update (grafana#3136)
Browse files Browse the repository at this point in the history
* Update jsonnet inet6 listen address after dskit udpate

* Update docs inet6 listen address after dskit udpate
  • Loading branch information
zalegrala authored Nov 13, 2023
1 parent 603c73b commit 7dac4c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/sources/tempo/configuration/ipv6.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ ingester:
enable_inet6: true

server:
grpc_listen_address: '[::0]'
grpc_listen_address: '::0'
grpc_listen_port: 9095
http_listen_address: '[::0]'
http_listen_address: '::0'
http_listen_port: 3200
```
Expand Down
4 changes: 2 additions & 2 deletions operations/jsonnet/microservices/common.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
},
tempo_config+:: {
server+: {
http_listen_address: '[::0]',
grpc_listen_address: '[::0]',
http_listen_address: '::0',
grpc_listen_address: '::0',
},
ingester+: {
lifecycler+: {
Expand Down

0 comments on commit 7dac4c4

Please sign in to comment.