Skip to content

Commit 31112a4

Browse files
authored
Use v1.15.3 and configure default azure endpoint suffix (#29)
Signed-off-by: Friedrich Gonzalez <[email protected]>
1 parent 0464135 commit 31112a4

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## master / unreleased
4+
* [CHANGE] Use cortex v1.15.3
5+
* [CHANGE] Azure storage endpoint suffix is set to `blob.core.windows.net` for backward compatibility
6+
37
## 1.14.1 / 2023-07-11
48

59
* [CHANGE] Use faster disks for compactor

cortex/config.libsonnet

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
'blocks-storage.azure.container-name': $._config.blocks_storage_bucket_name,
9999
'blocks-storage.azure.account-name': $._config.blocks_storage_azure_account_name,
100100
'blocks-storage.azure.account-key': $._config.blocks_storage_azure_account_key,
101+
'blocks-storage.azure.endpoint-suffix': 'blob.core.windows.net',
101102
},
102103

103104
blocksStorageConfig:
@@ -164,6 +165,7 @@
164165
'ruler-storage.azure.container-name': $._config.ruler_storage_bucket_name,
165166
'ruler-storage.azure.account-name': $._config.ruler_storage_azure_account_name,
166167
'ruler-storage.azure.account-key': $._config.ruler_storage_azure_account_key,
168+
'ruler-storage.azure.endpoint-suffix': 'blob.core.windows.net',
167169
},
168170
'local': {
169171
'ruler-storage.local.directory': $._config.ruler_local_directory,
@@ -194,6 +196,7 @@
194196
'alertmanager-storage.azure.account-key': $._config.alertmanager_azure_account_key,
195197
'alertmanager-storage.azure.account-name': $._config.alertmanager_azure_account_name,
196198
'alertmanager-storage.azure.container-name': $._config.alertmanager_azure_container_name,
199+
'alertmanager-storage.azure.endpoint-suffix': 'blob.core.windows.net',
197200
},
198201
gcs: {
199202
'alertmanager-storage.gcs.bucket-name': $._config.alertmanager_gcs_bucket_name,

cortex/images.libsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
memcachedExporter: 'prom/memcached-exporter:v0.6.0',
66

77
// Our services.
8-
cortex: 'cortexproject/cortex:v1.14.1',
8+
cortex: 'cortexproject/cortex:v1.15.3',
99

1010
alertmanager: self.cortex,
1111
distributor: self.cortex,
@@ -20,7 +20,7 @@
2020
query_scheduler: self.cortex,
2121

2222
overrides_exporter: self.cortex,
23-
query_tee: 'quay.io/cortexproject/query-tee:v1.14.1',
24-
testExporter: 'cortexproject/test-exporter:v1.14.1',
23+
query_tee: 'quay.io/cortexproject/query-tee:v1.15.3',
24+
testExporter: 'cortexproject/test-exporter:v1.15.3',
2525
},
2626
}

0 commit comments

Comments
 (0)