Skip to content

Commit

Permalink
Fix ruler s3 storage configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
forestsword committed Sep 10, 2020
1 parent ada12a9 commit 4a2e39e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

## master / unreleased

* [BUGFIX] Add support the `local` ruler client type
* [CHANGE] The project is now licensed with Apache-2.0 license. #169
* [CHANGE] Add overrides config to tsdb store-gateway. #167
* [CHANGE] Ingesters now default to running as `StatefulSet` with WAL enabled. It is controlled by the config `$._config.ingester_deployment_without_wal` which is `false` by default. Setting the config to `true` will yeild the old behaviour (stateless `Deployment` without WAL enabled). #72
* [CHANGE] Ingesters now default to running as `StatefulSet` with WAL enabled. It is controlled by the config `$._config.ingester_deployment_without_wal` which is `false` by default. Setting the config to `true` will yield the old behaviour (stateless `Deployment` without WAL enabled). #72
* [CHANGE] We now allow queries that are 32 days long. For example, rate(metric[32d]). Before it was 31d. #173
* [ENHANCEMENT] Enable support for HA in the Cortex Alertmanager #147
* [ENHANCEMENT] Support `alertmanager.fallback_config` option in the Alertmanager. #179
* [BUGFIX] Add support the `local` ruler client type
* [BUGFIX] Fixes `ruler.storage.s3.url` argument for the Ruler. It used an incorrect argument. #177

## 1.3.0 / 2020-08-21

Expand Down
2 changes: 1 addition & 1 deletion cortex/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
'ruler.storage.gcs.bucketname': $._config.ruler_gcs_bucket_name,
},
s3: {
's3.url': 'https://%s/%s' % [$._config.aws_region, $._config.ruler_s3_bucket_name],
'ruler.storage.s3.url': 'https://%s/%s' % [$._config.aws_region, $._config.ruler_s3_bucket_name],
},
'local': {
'ruler.storage.local.directory': $._config.ruler_local_directory,
Expand Down

0 comments on commit 4a2e39e

Please sign in to comment.