Skip to content

Commit 51662ea

Browse files
authored
Prepare Cortex 1.8.0 (final) release. (#4003)
Signed-off-by: Peter Štibraný <[email protected]>
1 parent 4aa2783 commit 51662ea

12 files changed

+19
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Changelog
22

3-
## 1.8.0-rc.1 / 2021-03-15
4-
5-
* [BUGFIX] Distributor: reverted changes done to rate limiting in #3825. #3948
6-
7-
## 1.8.0-rc.0 / 2021-03-08
3+
## 1.8.0 / 2021-03-24
84

95
* [CHANGE] Alertmanager: Don't expose cluster information to tenants via the `/alertmanager/api/v1/status` API endpoint when operating with clustering enabled. #3903
106
* [CHANGE] Ingester: don't update internal "last updated" timestamp of TSDB if tenant only sends invalid samples. This affects how "idle" time is computed. #3727
@@ -78,7 +74,6 @@
7874
* `cortex_ha_tracker_replicas_cleanup_delete_failed_total`
7975
* [ENHANCEMENT] Ruler now has new API endpoint `/ruler/delete_tenant_config` that can be used to delete all ruler groups for tenant. It is intended to be used by administrators who wish to clean up state after removed user. Note that this endpoint is enabled regardless of `-experimental.ruler.enable-api`. #3750 #3899
8076
* [ENHANCEMENT] Query-frontend, query-scheduler: cleanup metrics for inactive tenants. #3826
81-
* [ENHANCEMENT] Distributor: Prevent failed ingestion from affecting rate limiting. #3825
8277
* [ENHANCEMENT] Blocks storage: added `-blocks-storage.s3.region` support to S3 client configuration. #3811
8378
* [ENHANCEMENT] Distributor: Remove cached subrings for inactive users when using shuffle sharding. #3849
8479
* [ENHANCEMENT] Store-gateway: Reduced memory used to fetch chunks at query time. #3855

RELEASE.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ Once your PR with release prepartion is approved, merge it to "release-X.Y" bran
8585
To publish a release candidate:
8686

8787
1. Do not change the release branch directly; make a PR to the release-X.Y branch with VERSION and any CHANGELOG changes.
88-
1. Ensure the `VERSION` file has the `-rc.X` suffix (`X` starting from `0`)
89-
1. `git tag` the new release (see [How to tag a release](#how-to-tag-a-release))
88+
1. Ensure the `VERSION` file has the `-rc.X` suffix (`X` starting from `0`)
89+
1. After merging your PR to release branch, `git tag` the new release (see [How to tag a release](#how-to-tag-a-release)) from release branch.
9090
1. Wait until CI pipeline succeeded (once a tag is created, the release process through GitHub actions will be triggered for this tag)
9191
1. Create a pre-release in GitHub
9292
- Write the release notes (including a copy-paste of the changelog)
@@ -98,11 +98,11 @@ To publish a release candidate:
9898
To publish a stable release:
9999

100100
1. Do not change the release branch directly; make a PR to the release-X.Y branch with VERSION and any CHANGELOG changes.
101-
1. Ensure the `VERSION` file has **no** `-rc.X` suffix
102-
1. Update the Cortex version in the following locations:
103-
- Kubernetes manifests located at `k8s/`
104-
- Documentation located at `docs/`
105-
1. `git tag` the new release (see [How to tag a release](#how-to-tag-a-release))
101+
1. Ensure the `VERSION` file has **no** `-rc.X` suffix
102+
1. Update the Cortex version in the following locations:
103+
- Kubernetes manifests located at `k8s/`
104+
- Documentation located at `docs/`
105+
1. After merging your PR to release branch, `git tag` the new release (see [How to tag a release](#how-to-tag-a-release)) from release branch.
106106
1. Wait until CI pipeline succeeded (once a tag is created, the release process through GitHub actions will be triggered for this tag)
107107
1. Create a release in GitHub
108108
- Write the release notes (including a copy-paste of the changelog)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.0-rc.1
1+
1.8.0

docs/guides/running-chunks-storage-with-cassandra.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ storage:
109109
```
110110

111111
The latest tag is not published for the Cortex docker image. Visit quay.io/repository/cortexproject/cortex
112-
to find the latest stable version tag and use it in the command below (currently it is `v1.7.0`).
112+
to find the latest stable version tag and use it in the command below (currently it is `v1.8.0`).
113113

114114
Run Cortex using the latest stable version:
115115

116116
```
117-
docker run -d --name=cortex -v $(pwd)/single-process-config.yaml:/etc/single-process-config.yaml -p 9009:9009 quay.io/cortexproject/cortex:v1.7.0 -config.file=/etc/single-process-config.yaml
117+
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.0 -config.file=/etc/single-process-config.yaml
118118
```
119119
In case you prefer to run the master version, please follow this [documentation](../getting-started/getting-started-chunks.md) on how to build Cortex from source.
120120

k8s/alertmanager-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: alertmanager
18-
image: quay.io/cortexproject/cortex:v1.7.0
18+
image: quay.io/cortexproject/cortex:v1.8.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=alertmanager

k8s/configs-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: configs
18-
image: quay.io/cortexproject/cortex:v1.7.0
18+
image: quay.io/cortexproject/cortex:v1.8.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=configs

k8s/distributor-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: distributor
18-
image: quay.io/cortexproject/cortex:v1.7.0
18+
image: quay.io/cortexproject/cortex:v1.8.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=distributor

k8s/ingester-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737

3838
containers:
3939
- name: ingester
40-
image: quay.io/cortexproject/cortex:v1.7.0
40+
image: quay.io/cortexproject/cortex:v1.8.0
4141
imagePullPolicy: IfNotPresent
4242
args:
4343
- -target=ingester

k8s/querier-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: querier
18-
image: quay.io/cortexproject/cortex:v1.7.0
18+
image: quay.io/cortexproject/cortex:v1.8.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=querier

k8s/query-frontend-dep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: query-frontend
18-
image: quay.io/cortexproject/cortex:v1.7.0
18+
image: quay.io/cortexproject/cortex:v1.8.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=query-frontend

0 commit comments

Comments
 (0)