Skip to content

Commit

Permalink
Add missing CHANGELOG and upgrading guide entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanGuedes committed Oct 13, 2021
1 parent db01cb6 commit d0a1a9b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Main
* [4400](https://github.com/grafana/loki/pull/4400) **trevorwhitney**: Config: automatically apply memberlist config too all rings when provided
* [4435](https://github.com/grafana/loki/pull/4435) **trevorwhitney**: Change default values for two GRPC settings so querier can connect to frontend/scheduler
* [4440](https://github.com/grafana/loki/pull/4440) **DylanGuedes**: Config: Override distributor's default ring KV store
* [4443](https://github.com/grafana/loki/pull/4443) **DylanGuedes**: Loki: Change how push API checks for contentType

# 2.3.0 (2021/08/06)
Expand Down
16 changes: 15 additions & 1 deletion docs/sources/upgrading/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ If possible try to stay current and do sequential updates. If you want to skip v

### Loki

#### Distributor now stores ring in memory by default instead of Consul

PR [4440](https://github.com/grafana/loki/pull/4440) **DylanGuedes**: Config: Override distributor's default ring KV store

This change sets `inmemory` as the new default storage for the Distributor ring (previously `consul`).
The motivation is making the Distributor easier to run with default configs, by not requiring Consul anymore.
In any case, if you prefer to use Consul as the ring storage, you can set it by using the following config:

```yaml
distributor:
ring:
kvstore:
store: consul
```
#### Memberlist config now automatically applies to all non-configured rings
PR [4400](https://github.com/grafana/loki/pull/4400) **trevorwhitney**: Config: automatically apply memberlist config too all rings when provided
Expand Down Expand Up @@ -84,7 +99,6 @@ Please manually provide the values of `5m` and `true` (respectively) in your con
-_add changes here which are unreleased_
## 2.3.0
### Loki
Expand Down

0 comments on commit d0a1a9b

Please sign in to comment.