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 Aug 31, 2020
1 parent b82a999 commit a2f9099
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* [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
* [BUGFIX] Fixes `ruler.storage.s3.url` argument for the ruler.

## 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 @@ -235,7 +235,7 @@
'ruler.storage.gcs.bucketname': $._config.ruler_gcs_bucket_name,
},
s3: {
's3.url': 'https://%s/%s' % [$._config.aws_region, $._config.s3_bucket_name],
'ruler.storage.s3.url': 'https://%s/%s' % [$._config.aws_region, $._config.ruler_s3_bucket_name],
},
}[$._config.ruler_client_type],

Expand Down

0 comments on commit a2f9099

Please sign in to comment.