diff --git a/CHANGELOG.md b/CHANGELOG.md index f865ebb5e6..283775c5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,12 @@ ## master / unreleased -## 1.9.0-rc.0 / 2021-04-29 +## 1.9.0 / 2021-05-14 * [CHANGE] Alertmanager now removes local files after Alertmanager is no longer running for removed or resharded user. #3910 * [CHANGE] Alertmanager now stores local files in per-tenant folders. Files stored by Alertmanager previously are migrated to new hierarchy. Support for this migration will be removed in Cortex 1.11. #3910 * [CHANGE] Ruler: deprecated `-ruler.storage.*` CLI flags (and their respective YAML config options) in favour of `-ruler-storage.*`. The deprecated config will be removed in Cortex 1.11. #3945 -* [CHANGE] Alertmanager: deprecated `-alertmanager.storage.*` CLI flags (and their respective YAML config options) in favour of `-alertmanager-storage.*`. The deprecated config will be removed in Cortex 1.11. #4002 +* [CHANGE] Alertmanager: deprecated `-alertmanager.storage.*` CLI flags (and their respective YAML config options) in favour of `-alertmanager-storage.*`. This change doesn't apply to `alertmanager.storage.path` and `alertmanager.storage.retention`. The deprecated config will be removed in Cortex 1.11. #4002 * [CHANGE] Alertmanager: removed `-cluster.` CLI flags deprecated in Cortex 1.7. The new config options to use are: #3946 * `-alertmanager.cluster.listen-address` instead of `-cluster.listen-address` * `-alertmanager.cluster.advertise-address` instead of `-cluster.advertise-address` diff --git a/VERSION b/VERSION index f44f1f1810..abb1658232 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.0-rc.0 \ No newline at end of file +1.9.0 \ No newline at end of file diff --git a/docs/chunks-storage/running-chunks-storage-with-cassandra.md b/docs/chunks-storage/running-chunks-storage-with-cassandra.md index 7fe2604ec0..16164ce8cc 100644 --- a/docs/chunks-storage/running-chunks-storage-with-cassandra.md +++ b/docs/chunks-storage/running-chunks-storage-with-cassandra.md @@ -109,12 +109,12 @@ storage: ``` The latest tag is not published for the Cortex docker image. Visit quay.io/repository/cortexproject/cortex -to find the latest stable version tag and use it in the command below (currently it is `v1.8.1`). +to find the latest stable version tag and use it in the command below (currently it is `v1.9.0`). Run Cortex using the latest stable version: ``` -docker run -d --name=cortex -v $(pwd)/single-process-config.yaml:/etc/single-process-config.yaml -p 9009:9009 quay.io/cortexproject/cortex:v1.8.1 -config.file=/etc/single-process-config.yaml +docker run -d --name=cortex -v $(pwd)/single-process-config.yaml:/etc/single-process-config.yaml -p 9009:9009 quay.io/cortexproject/cortex:v1.9.0 -config.file=/etc/single-process-config.yaml ``` In case you prefer to run the master version, please follow this [documentation](./chunks-storage-getting-started.md) on how to build Cortex from source. diff --git a/k8s/alertmanager-dep.yaml b/k8s/alertmanager-dep.yaml index 6c94b2eb6a..ff1e7578e9 100644 --- a/k8s/alertmanager-dep.yaml +++ b/k8s/alertmanager-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: alertmanager - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=alertmanager diff --git a/k8s/configs-dep.yaml b/k8s/configs-dep.yaml index e7a39d2eaa..0d2d73f40c 100644 --- a/k8s/configs-dep.yaml +++ b/k8s/configs-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: configs - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=configs diff --git a/k8s/distributor-dep.yaml b/k8s/distributor-dep.yaml index bc28b3711f..aa1103c0ee 100644 --- a/k8s/distributor-dep.yaml +++ b/k8s/distributor-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: distributor - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=distributor diff --git a/k8s/ingester-dep.yaml b/k8s/ingester-dep.yaml index 7468d78281..da4ec77670 100644 --- a/k8s/ingester-dep.yaml +++ b/k8s/ingester-dep.yaml @@ -37,7 +37,7 @@ spec: containers: - name: ingester - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=ingester diff --git a/k8s/querier-dep.yaml b/k8s/querier-dep.yaml index 7797cceff1..9db34dd186 100644 --- a/k8s/querier-dep.yaml +++ b/k8s/querier-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: querier - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=querier diff --git a/k8s/query-frontend-dep.yaml b/k8s/query-frontend-dep.yaml index 38a28f77e7..b01adbbbfc 100644 --- a/k8s/query-frontend-dep.yaml +++ b/k8s/query-frontend-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: query-frontend - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=query-frontend diff --git a/k8s/ruler-dep.yaml b/k8s/ruler-dep.yaml index b36f03cfb5..f8b939514d 100644 --- a/k8s/ruler-dep.yaml +++ b/k8s/ruler-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: ruler - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=ruler diff --git a/k8s/table-manager-dep.yaml b/k8s/table-manager-dep.yaml index f7e852e9bb..31bc91ed83 100644 --- a/k8s/table-manager-dep.yaml +++ b/k8s/table-manager-dep.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: table-manager - image: quay.io/cortexproject/cortex:v1.8.1 + image: quay.io/cortexproject/cortex:v1.9.0 imagePullPolicy: IfNotPresent args: - -target=table-manager