Skip to content

Commit 8e29ba0

Browse files
committed
Cut v0.19.0
Signed-off-by: Bartlomiej Plotka <[email protected]>
1 parent faf1d04 commit 8e29ba0

File tree

18 files changed

+38
-38
lines changed

18 files changed

+38
-38
lines changed

CHANGELOG.md

+1-1
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.2](https://github.com/thanos-io/thanos/releases/tag/v0.19.0-rc.2) - 2021.03.24
13+
## [v0.19.0](https://github.com/thanos-io/thanos/releases/tag/v0.19.0) - 2021.03.31
1414

1515
### Added
1616

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.2
4+
docker pull quay.io/thanos/thanos:v0.19.0

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

+4-4
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.2 --help
13+
docker run --rm quay.io/thanos/thanos:v0.19.0 --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.2 \
56+
quay.io/thanos/thanos:v0.19.0 \
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.2 \
71+
quay.io/thanos/thanos:v0.19.0 \
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.2 \
84+
quay.io/thanos/thanos:v0.19.0 \
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

+1-1
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.2 \
31+
quay.io/thanos/thanos:v0.19.0 \
3232
query \
3333
--http-address 0.0.0.0:29090 \
3434
--query.replica-label replica \

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

+1-1
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.2
5+
docker pull quay.io/thanos/thanos:v0.19.0
66
docker pull quay.io/thanos/thanosbench:v0.2.0-rc.1
77

88
mkdir /root/editor

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

+2-2
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.2 \
120+
quay.io/thanos/thanos:v0.19.0 \
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.2 \
133+
quay.io/thanos/thanos:v0.19.0 \
134134
query \
135135
--http-address 0.0.0.0:9091 \
136136
--query.replica-label replica \

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

+1-1
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.2 \
82+
quay.io/thanos/thanos:v0.19.0 \
8383
sidecar \
8484
--tsdb.path /prometheus \
8585
--objstore.config-file /etc/thanos/minio-bucket.yaml \

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

+3-3
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.2 --help```{{execute}}
9+
```docker run --rm quay.io/thanos/thanos:v0.19.0 --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.2 \
35+
quay.io/thanos/thanos:v0.19.0 \
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.2 \
52+
quay.io/thanos/thanos:v0.19.0 \
5353
query \
5454
--http-address 0.0.0.0:9091 \
5555
--query.replica-label replica \

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

+1-1
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.2 \
28+
quay.io/thanos/thanos:v0.19.0 \
2929
compact \
3030
--wait --wait-interval 30s \
3131
--consistency-delay 0s \
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
22

33
docker pull quay.io/prometheus/prometheus:v2.22.2
4-
docker pull quay.io/thanos/thanos:v0.19.0-rc.2
4+
docker pull quay.io/thanos/thanos:v0.19.0
55
docker pull yannrobert/docker-nginx

tutorials/katacoda/thanos/6-query-caching/step1.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ docker run -d --net=host --rm \
103103
-v $(pwd)/prometheus"${i}".yml:/etc/prometheus/prometheus.yml \
104104
--name prometheus-sidecar"${i}" \
105105
-u root \
106-
quay.io/thanos/thanos:v0.19.0-rc.2 \
106+
quay.io/thanos/thanos:v0.19.0 \
107107
sidecar \
108108
--http-address=0.0.0.0:1909"${i}" \
109109
--grpc-address=0.0.0.0:1919"${i}" \
@@ -129,7 +129,7 @@ And now, let's deploy Thanos Querier to have a global overview on our services.
129129
```
130130
docker run -d --net=host --rm \
131131
--name querier \
132-
quay.io/thanos/thanos:v0.19.0-rc.2 \
132+
quay.io/thanos/thanos:v0.19.0 \
133133
query \
134134
--http-address 0.0.0.0:10912 \
135135
--grpc-address 0.0.0.0:10901 \

tutorials/katacoda/thanos/6-query-caching/step2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ And deploy Query Frontend:
6262
docker run -d --net=host --rm \
6363
-v $(pwd)/frontend.yml:/etc/thanos/frontend.yml \
6464
--name query-frontend \
65-
quay.io/thanos/thanos:v0.19.0-rc.2 \
65+
quay.io/thanos/thanos:v0.19.0 \
6666
query-frontend \
6767
--http-address 0.0.0.0:20902 \
6868
--query-frontend.compress-responses \

tutorials/katacoda/thanos/7-multi-tenancy/courseBase.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
docker pull quay.io/prometheus/prometheus:v2.20.0
4-
docker pull quay.io/thanos/thanos:v0.19.0-rc.2
4+
docker pull quay.io/thanos/thanos:v0.19.0
55
docker pull quay.io/thanos/prom-label-proxy:v0.3.0-rc.0-ext1
66
docker pull caddy:2.2.1
77

tutorials/katacoda/thanos/7-multi-tenancy/step1.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ docker run -d --net=host --rm \
8888
-v $(pwd)/editor/prometheus0_fruit.yml:/etc/prometheus/prometheus.yml \
8989
--name prometheus-0-sidecar-fruit \
9090
-u root \
91-
quay.io/thanos/thanos:v0.19.0-rc.2 \
91+
quay.io/thanos/thanos:v0.19.0 \
9292
sidecar \
9393
--http-address 0.0.0.0:19090 \
9494
--grpc-address 0.0.0.0:19190 \
@@ -120,7 +120,7 @@ docker run -d --net=host --rm \
120120
-v $(pwd)/editor/prometheus0_veggie.yml:/etc/prometheus/prometheus.yml \
121121
--name prometheus-0-sidecar-veggie \
122122
-u root \
123-
quay.io/thanos/thanos:v0.19.0-rc.2 \
123+
quay.io/thanos/thanos:v0.19.0 \
124124
sidecar \
125125
--http-address 0.0.0.0:19091 \
126126
--grpc-address 0.0.0.0:19191 \
@@ -152,7 +152,7 @@ docker run -d --net=host --rm \
152152
-v $(pwd)/editor/prometheus1_veggie.yml:/etc/prometheus/prometheus.yml \
153153
--name prometheus-01-sidecar-veggie \
154154
-u root \
155-
quay.io/thanos/thanos:v0.19.0-rc.2 \
155+
quay.io/thanos/thanos:v0.19.0 \
156156
sidecar \
157157
--http-address 0.0.0.0:19092 \
158158
--grpc-address 0.0.0.0:19192 \
@@ -170,7 +170,7 @@ Fruit:
170170
```
171171
docker run -d --net=host --rm \
172172
--name querier-fruit \
173-
quay.io/thanos/thanos:v0.19.0-rc.2 \
173+
quay.io/thanos/thanos:v0.19.0 \
174174
query \
175175
--http-address 0.0.0.0:29091 \
176176
--grpc-address 0.0.0.0:29191 \
@@ -183,7 +183,7 @@ Veggie:
183183
```
184184
docker run -d --net=host --rm \
185185
--name querier-veggie \
186-
quay.io/thanos/thanos:v0.19.0-rc.2 \
186+
quay.io/thanos/thanos:v0.19.0 \
187187
query \
188188
--http-address 0.0.0.0:29092 \
189189
--grpc-address 0.0.0.0:29192 \

tutorials/katacoda/thanos/7-multi-tenancy/step2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ docker stop querier-fruit && docker stop querier-veggie
1111
```
1212
docker run -d --net=host --rm \
1313
--name querier-multi \
14-
quay.io/thanos/thanos:v0.19.0-rc.2 \
14+
quay.io/thanos/thanos:v0.19.0 \
1515
query \
1616
--http-address 0.0.0.0:29090 \
1717
--grpc-address 0.0.0.0:29190 \

tutorials/katacoda/thanos/x-playground/courseBase.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

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

tutorials/katacoda/thanos/x-playground/step1.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ docker run -d --net=host --rm \
169169
### Step1: Sidecar
170170
171171
```
172-
docker run -it --rm quay.io/thanos/thanos:v0.19.0-rc.2 --help
172+
docker run -it --rm quay.io/thanos/thanos:v0.19.0 --help
173173
```{{execute}}
174174
175175
@@ -180,7 +180,7 @@ docker run -d --net=host --rm \
180180
-v ${CURR_DIR}/prom-eu1-replica0-config.yaml:/etc/prometheus/prometheus.yml \
181181
--name prom-eu1-0-sidecar \
182182
-u root \
183-
quay.io/thanos/thanos:v0.19.0-rc.2 \
183+
quay.io/thanos/thanos:v0.19.0 \
184184
sidecar \
185185
--http-address 0.0.0.0:19091 \
186186
--grpc-address 0.0.0.0:19191 \
@@ -195,7 +195,7 @@ docker run -d --net=host --rm \
195195
-v ${CURR_DIR}/prom-eu1-replica1-config.yaml:/etc/prometheus/prometheus.yml \
196196
--name prom-eu1-1-sidecar \
197197
-u root \
198-
quay.io/thanos/thanos:v0.19.0-rc.2 \
198+
quay.io/thanos/thanos:v0.19.0 \
199199
sidecar \
200200
--http-address 0.0.0.0:19092 \
201201
--grpc-address 0.0.0.0:19192 \
@@ -210,7 +210,7 @@ docker run -d --net=host --rm \
210210
-v ${CURR_DIR}/prom-us1-replica0-config.yaml:/etc/prometheus/prometheus.yml \
211211
--name prom-us1-0-sidecar \
212212
-u root \
213-
quay.io/thanos/thanos:v0.19.0-rc.2 \
213+
quay.io/thanos/thanos:v0.19.0 \
214214
sidecar \
215215
--http-address 0.0.0.0:19093 \
216216
--grpc-address 0.0.0.0:19193 \
@@ -223,7 +223,7 @@ docker run -d --net=host --rm \
223223
```
224224
docker run -d --net=host --rm \
225225
--name querier \
226-
quay.io/thanos/thanos:v0.19.0-rc.2 \
226+
quay.io/thanos/thanos:v0.19.0 \
227227
query \
228228
--http-address 0.0.0.0:9090 \
229229
--grpc-address 0.0.0.0:19190 \

tutorials/katacoda/thanos/x-playground/step2.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ docker run -d --net=host --rm \
6565
-v ${CURR_DIR}/prom-eu1-replica0:/prometheus \
6666
--name prom-eu1-0-sidecar \
6767
-u root \
68-
quay.io/thanos/thanos:v0.19.0-rc.2 \
68+
quay.io/thanos/thanos:v0.19.0 \
6969
sidecar \
7070
--tsdb.path /prometheus \
7171
--objstore.config-file /etc/thanos/minio-bucket.yaml \
@@ -85,7 +85,7 @@ docker run -d --net=host --rm \
8585
-v ${CURR_DIR}/prom-eu1-replica1:/prometheus \
8686
--name prom-eu1-1-sidecar \
8787
-u root \
88-
quay.io/thanos/thanos:v0.19.0-rc.2 \
88+
quay.io/thanos/thanos:v0.19.0 \
8989
sidecar \
9090
--tsdb.path /prometheus \
9191
--objstore.config-file /etc/thanos/minio-bucket.yaml \
@@ -105,7 +105,7 @@ docker run -d --net=host --rm \
105105
-v ${CURR_DIR}/prom-us1-replica0:/prometheus \
106106
--name prom-us1-0-sidecar \
107107
-u root \
108-
quay.io/thanos/thanos:v0.19.0-rc.2 \
108+
quay.io/thanos/thanos:v0.19.0 \
109109
sidecar \
110110
--tsdb.path /prometheus \
111111
--objstore.config-file /etc/thanos/minio-bucket.yaml \
@@ -130,7 +130,7 @@ Let's run Store Gateway server:
130130
docker run -d --net=host --rm \
131131
-v ${CURR_DIR}/minio-bucket.yaml:/etc/thanos/minio-bucket.yaml \
132132
--name store-gateway \
133-
quay.io/thanos/thanos:v0.19.0-rc.2 \
133+
quay.io/thanos/thanos:v0.19.0 \
134134
store \
135135
--objstore.config-file /etc/thanos/minio-bucket.yaml \
136136
--http-address 0.0.0.0:19094 \
@@ -143,7 +143,7 @@ docker run -d --net=host --rm \
143143
docker stop querier && \
144144
docker run -d --net=host --rm \
145145
--name querier \
146-
quay.io/thanos/thanos:v0.19.0-rc.2 \
146+
quay.io/thanos/thanos:v0.19.0 \
147147
query \
148148
--http-address 0.0.0.0:9090 \
149149
--grpc-address 0.0.0.0:19190 \
@@ -162,7 +162,7 @@ Visit https://[[HOST_SUBDOMAIN]]-9090-[[KATACODA_HOST]].environments.katacoda.co
162162
docker run -d --net=host --rm \
163163
-v ${CURR_DIR}/minio-bucket.yaml:/etc/thanos/minio-bucket.yaml \
164164
--name compactor \
165-
quay.io/thanos/thanos:v0.19.0-rc.2 \
165+
quay.io/thanos/thanos:v0.19.0 \
166166
compact \
167167
--wait --wait-interval 30s \
168168
--consistency-delay 0s \

0 commit comments

Comments
 (0)