Skip to content

Commit 46a7d4e

Browse files
committed
Publish v0.17.0 release (thanos-io#3462)
Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>
1 parent dd3bbf0 commit 46a7d4e

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

VERSION

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

docs/contributing/coding-style-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ defer f.Close() // What if an error occurs here?
6565
Unchecked errors like this can lead to major bugs. Consider the above example: the `*os.File` `Close` method can be responsible
6666
for actually flushing to the file, so if an error occurs at that point, the whole **write might be aborted!** 😱
6767

68-
Always check errors! To make it consistent and not distracting, use our [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.11.0/pkg/runutil?tab=doc)
68+
Always check errors! To make it consistent and not distracting, use our [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.17.0/pkg/runutil?tab=doc)
6969
helper package, e.g.:
7070

7171
```go
@@ -122,7 +122,7 @@ func writeToFile(...) (err error) {
122122
#### Exhaust Readers
123123

124124
One of the most common bugs is forgetting to close or fully read the bodies of HTTP requests and responses, especially on
125-
error. If you read the body of such structures, you can use the [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.11.0/pkg/runutil?tab=doc)
125+
error. If you read the body of such structures, you can use the [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.17.0/pkg/runutil?tab=doc)
126126
helper as well:
127127

128128
```go

docs/operating/cross-cluster-tls-communication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ metadata:
7171
optional: false
7272
containers:
7373
- name: querier
74-
image: 'thanosio/thanos:v0.15.0'
74+
image: 'thanosio/thanos:v0.17.0'
7575
args:
7676
- query
7777
- '--log.level=info'
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.13.0
4+
docker pull quay.io/thanos/thanos:v0.17.0

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

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

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

Lines changed: 1 addition & 1 deletion
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.16.0-rc.1
4+
docker pull quay.io/thanos/thanos:v0.17.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

Lines changed: 5 additions & 5 deletions
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.16.0-rc.1 \
91+
quay.io/thanos/thanos:v0.17.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.16.0-rc.1 \
123+
quay.io/thanos/thanos:v0.17.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.16.0-rc.1 \
155+
quay.io/thanos/thanos:v0.17.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.16.0-rc.1 \
173+
quay.io/thanos/thanos:v0.17.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.16.0-rc.1 \
186+
quay.io/thanos/thanos:v0.17.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

Lines changed: 1 addition & 1 deletion
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.16.0-rc.1 \
14+
quay.io/thanos/thanos:v0.17.0 \
1515
query \
1616
--http-address 0.0.0.0:29090 \
1717
--grpc-address 0.0.0.0:29190 \

0 commit comments

Comments
 (0)