From a2f9099b0958ac8d2f5d1a76fa1cc830476c7b7e Mon Sep 17 00:00:00 2001 From: forestsword Date: Mon, 31 Aug 2020 15:18:49 +0200 Subject: [PATCH] Fix ruler s3 storage configuration --- CHANGELOG.md | 1 + cortex/config.libsonnet | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d68424..d392d608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/cortex/config.libsonnet b/cortex/config.libsonnet index 5851d067..0d8eff28 100644 --- a/cortex/config.libsonnet +++ b/cortex/config.libsonnet @@ -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],