Skip to content

Commit 5620c09

Browse files
authored
Cut v0.19.0-rc.2 (thanos-io#3969)
Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
1 parent 7002609 commit 5620c09

File tree

19 files changed

+39
-40
lines changed

19 files changed

+39
-40
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan
1010

1111
We use _breaking :warning:_ to mark changes that are not backward compatible (relates only to v0.y.z releases.)
1212

13-
## [v0.19.0-rc.1](https://github.com/thanos-io/thanos/releases/tag/v0.19.0-rc.2) - 2021.03.22
13+
## [v0.19.0-rc.2](https://github.com/thanos-io/thanos/releases/tag/v0.19.0-rc.2) - 2021.03.24
1414

1515
### Added
1616

@@ -24,7 +24,6 @@ We use _breaking :warning:_ to mark changes that are not backward compatible (re
2424
- [#3686](https://github.com/thanos-io/thanos/pull/3686) Query/Sidecar: Added metric metadata API support. You can now configure you Querier to fetch Prometheus metrics metadata from leaf Prometheus-es!
2525
- [#3031](https://github.com/thanos-io/thanos/pull/3031) Compact/Sidecar/Receive/Rule: Added `--hash-func`. If some function has been specified, writers calculate hashes using that function of each file in a block before uploading them. If those hashes exist in the `meta.json` file then Compact does not download the files if they already exist on disk and with the same hash. This also means that the data directory passed to Thanos Compact is only *cleared once at boot* or *if everything succeeds*. So, if you, for example, use persistent volumes on k8s and your Thanos Compact crashes or fails to make an iteration properly then the last downloaded files are not wiped from the disk. The directories that were created the last time are only wiped again after a successful iteration or if the previously picked up blocks have disappeared.
2626

27-
2827
### Fixed
2928

3029
- [#3705](https://github.com/thanos-io/thanos/pull/3705) Store: Fix race condition leading to failing queries or possibly incorrect query results.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.19.0-rc.1
1+
0.19.0-rc.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22

33
docker pull quay.io/prometheus/prometheus:v2.16.0
4-
docker pull quay.io/thanos/thanos:v0.19.0-rc.1
4+
docker pull quay.io/thanos/thanos:v0.19.0-rc.2

tutorials/katacoda/thanos/1-globalview/step2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ component and can be invoked in a single command.
1010
Let's take a look at all the Thanos commands:
1111

1212
```
13-
docker run --rm quay.io/thanos/thanos:v0.19.0-rc.1 --help
13+
docker run --rm quay.io/thanos/thanos:v0.19.0-rc.2 --help
1414
```{{execute}}
1515
1616
You should see multiple commands that solves different purposes.
@@ -53,7 +53,7 @@ docker run -d --net=host --rm \
5353
-v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \
5454
--name prometheus-0-sidecar-eu1 \
5555
-u root \
56-
quay.io/thanos/thanos:v0.19.0-rc.1 \
56+
quay.io/thanos/thanos:v0.19.0-rc.2 \
5757
sidecar \
5858
--http-address 0.0.0.0:19090 \
5959
--grpc-address 0.0.0.0:19190 \
@@ -68,7 +68,7 @@ docker run -d --net=host --rm \
6868
-v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \
6969
--name prometheus-0-sidecar-us1 \
7070
-u root \
71-
quay.io/thanos/thanos:v0.19.0-rc.1 \
71+
quay.io/thanos/thanos:v0.19.0-rc.2 \
7272
sidecar \
7373
--http-address 0.0.0.0:19091 \
7474
--grpc-address 0.0.0.0:19191 \
@@ -81,7 +81,7 @@ docker run -d --net=host --rm \
8181
-v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \
8282
--name prometheus-1-sidecar-us1 \
8383
-u root \
84-
quay.io/thanos/thanos:v0.19.0-rc.1 \
84+
quay.io/thanos/thanos:v0.19.0-rc.2 \
8585
sidecar \
8686
--http-address 0.0.0.0:19092 \
8787
--grpc-address 0.0.0.0:19192 \

tutorials/katacoda/thanos/1-globalview/step3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Click below snippet to start the Querier.
2828
```
2929
docker run -d --net=host --rm \
3030
--name querier \
31-
quay.io/thanos/thanos:v0.19.0-rc.1 \
31+
quay.io/thanos/thanos:v0.19.0-rc.2 \
3232
query \
3333
--http-address 0.0.0.0:29090 \
3434
--query.replica-label replica \

tutorials/katacoda/thanos/2-lts/courseBase.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
docker pull minio/minio:RELEASE.2019-01-31T00-31-19Z
44
docker pull quay.io/prometheus/prometheus:v2.20.0
5-
docker pull quay.io/thanos/thanos:v0.19.0-rc.1
5+
docker pull quay.io/thanos/thanos:v0.19.0-rc.2
66
docker pull quay.io/thanos/thanosbench:v0.2.0-rc.1
77

88
mkdir /root/editor

tutorials/katacoda/thanos/2-lts/step1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Similar to previous course, let's setup global view querying with sidecar:
117117
docker run -d --net=host --rm \
118118
--name prometheus-0-eu1-sidecar \
119119
-u root \
120-
quay.io/thanos/thanos:v0.19.0-rc.1 \
120+
quay.io/thanos/thanos:v0.19.0-rc.2 \
121121
sidecar \
122122
--http-address 0.0.0.0:19090 \
123123
--grpc-address 0.0.0.0:19190 \
@@ -130,7 +130,7 @@ so we will make sure we point the Querier to the gRPC endpoints of the sidecar:
130130
```
131131
docker run -d --net=host --rm \
132132
--name querier \
133-
quay.io/thanos/thanos:v0.19.0-rc.1 \
133+
quay.io/thanos/thanos:v0.19.0-rc.2 \
134134
query \
135135
--http-address 0.0.0.0:9091 \
136136
--query.replica-label replica \

tutorials/katacoda/thanos/2-lts/step2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ docker run -d --net=host --rm \
7979
-v /root/prom-eu1:/prometheus \
8080
--name prometheus-0-eu1-sidecar \
8181
-u root \
82-
quay.io/thanos/thanos:v0.19.0-rc.1 \
82+
quay.io/thanos/thanos:v0.19.0-rc.2 \
8383
sidecar \
8484
--tsdb.path /prometheus \
8585
--objstore.config-file /etc/thanos/minio-bucket.yaml \

tutorials/katacoda/thanos/2-lts/step3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In this step, we will learn about Thanos Store Gateway and how to deploy it.
66

77
Let's take a look at all the Thanos commands:
88

9-
```docker run --rm quay.io/thanos/thanos:v0.19.0-rc.1 --help```{{execute}}
9+
```docker run --rm quay.io/thanos/thanos:v0.19.0-rc.2 --help```{{execute}}
1010

1111
You should see multiple commands that solve different purposes, block storage based long-term storage for Prometheus.
1212

@@ -32,7 +32,7 @@ You can read more about [Store](https://thanos.io/tip/components/store.md/) here
3232
docker run -d --net=host --rm \
3333
-v /root/editor/bucket_storage.yaml:/etc/thanos/minio-bucket.yaml \
3434
--name store-gateway \
35-
quay.io/thanos/thanos:v0.19.0-rc.1 \
35+
quay.io/thanos/thanos:v0.19.0-rc.2 \
3636
store \
3737
--objstore.config-file /etc/thanos/minio-bucket.yaml \
3838
--http-address 0.0.0.0:19091 \
@@ -49,7 +49,7 @@ Currently querier does not know about store yet. Let's change it by adding Store
4949
docker stop querier && \
5050
docker run -d --net=host --rm \
5151
--name querier \
52-
quay.io/thanos/thanos:v0.19.0-rc.1 \
52+
quay.io/thanos/thanos:v0.19.0-rc.2 \
5353
query \
5454
--http-address 0.0.0.0:9091 \
5555
--query.replica-label replica \

tutorials/katacoda/thanos/2-lts/step4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Click below snippet to start the Compactor.
2525
docker run -d --net=host --rm \
2626
-v /root/editor/bucket_storage.yaml:/etc/thanos/minio-bucket.yaml \
2727
--name thanos-compact \
28-
quay.io/thanos/thanos:v0.19.0-rc.1 \
28+
quay.io/thanos/thanos:v0.19.0-rc.2 \
2929
compact \
3030
--wait --wait-interval 30s \
3131
--consistency-delay 0s \

0 commit comments

Comments
 (0)