Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 36b9442

Browse files
authored
Merge pull request #171 from forestsword/fix-ruler-s3-args
Fix ruler s3 storage configuration
2 parents ada12a9 + 97edc56 commit 36b9442

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
## master / unreleased
44

5-
* [BUGFIX] Add support the `local` ruler client type
65
* [CHANGE] The project is now licensed with Apache-2.0 license. #169
76
* [CHANGE] Add overrides config to tsdb store-gateway. #167
8-
* [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
7+
* [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
98
* [CHANGE] We now allow queries that are 32 days long. For example, rate(metric[32d]). Before it was 31d. #173
109
* [ENHANCEMENT] Enable support for HA in the Cortex Alertmanager #147
1110
* [ENHANCEMENT] Support `alertmanager.fallback_config` option in the Alertmanager. #179
11+
* [BUGFIX] Add support the `local` ruler client type #175
12+
* [BUGFIX] Fixes `ruler.storage.s3.url` argument for the Ruler. It used an incorrect argument. #177
1213

1314
## 1.3.0 / 2020-08-21
1415

cortex/config.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
'ruler.storage.gcs.bucketname': $._config.ruler_gcs_bucket_name,
237237
},
238238
s3: {
239-
's3.url': 'https://%s/%s' % [$._config.aws_region, $._config.ruler_s3_bucket_name],
239+
'ruler.storage.s3.url': 'https://%s/%s' % [$._config.aws_region, $._config.ruler_s3_bucket_name],
240240
},
241241
'local': {
242242
'ruler.storage.local.directory': $._config.ruler_local_directory,

0 commit comments

Comments
 (0)