Skip to content

Commit

Permalink
Ruler: Pass -ruler-storage.s3.endpoint to ruler when using S3.
Browse files Browse the repository at this point in the history
This argument is is required, without it, the following error appears:

```
no s3 endpoint in config file
```
  • Loading branch information
stevesg committed Nov 22, 2021
1 parent aaa283e commit 9e890ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
* [BUGFIX] Treat `compactor_blocks_retention_period` type as string rather than int.#395
* [BUGFIX] Fixed writes/reads/alertmanager resources dashboards to use `$._config.job_names.gateway`. #403
* [BUGFIX] Span the annotation.message in alerts as YAML multiline strings. #412
* [BUGFIX] Pass `-ruler-storage.s3.endpoint` to ruler when using S3. #421

## 1.9.0 / 2021-05-18

Expand Down
1 change: 1 addition & 0 deletions cortex/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@
s3: {
'ruler-storage.s3.region': $._config.aws_region,
'ruler-storage.s3.bucket-name': $._config.ruler_storage_bucket_name,
'ruler-storage.s3.endpoint': 's3.dualstack.%s.amazonaws.com' % $._config.aws_region,
},
azure: {
'ruler-storage.azure.container-name': $._config.ruler_storage_bucket_name,
Expand Down

0 comments on commit 9e890ca

Please sign in to comment.