Skip to content

Commit 816c0e1

Browse files
authored
Update Alpine Image to 3.18.x (#3046) (#3067)
* fix 3044 Signed-off-by: Joe Elliott <[email protected]> * Update CHANGELOG.md Co-authored-by: Koenraad Verheyden <[email protected]> --------- Signed-off-by: Joe Elliott <[email protected]> Co-authored-by: Koenraad Verheyden <[email protected]> (cherry picked from commit b7f2956)
1 parent e72384e commit 816c0e1

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
* [FEATURE] Add the `/api/status/buildinfo` endpoint [#2702](https://github.com/grafana/tempo/pull/2702) (@fabrizio-grafana)
33
* [FEATURE] New encoding vParquet3 with support for dedicated attribute columns (@mapno, @stoewer) [#2649](https://github.com/grafana/tempo/pull/2649)
44
* [FEATURE] Add filtering support to Generic Forwarding [#2742](https://github.com/grafana/tempo/pull/2742) (@Blinkuu)
5+
* [FEATURE] Add cli command to print out summary of large traces [#2775](https://github.com/grafana/tempo/pull/2775) (@ie-pham)
6+
* [FEATURE] Added not structural operators to TraceQL: !>, !<, and !~ [#2993](https://github.com/grafana/tempo/pull/2993) (@joe-elliott)
7+
* [CHANGE] Update Go to 1.21 [#2486](https://github.com/grafana/tempo/pull/2829) (@zalegrala)
8+
* [CHANGE] Make metrics-generator ingestion slack per tenant [#2589](https://github.com/grafana/tempo/pull/2589) (@ie-pham)
9+
* [CHANGE] Moved the tempo_ingester_traces_created_total metric to be incremented when a trace is cut to the wal [#2884](https://github.com/grafana/tempo/pull/2884) (@joe-elliott)
10+
* [CHANGE] Upgrade from deprecated [azure-storage-blob-go](https://github.com/Azure/azure-storage-blob-go) SDK to [azure-sdk-for-go](https://github.com/Azure/azure-sdk-for-go) [#2835](https://github.com/grafana/tempo/issues/2835) (@LasseHels)
11+
* [CHANGE] Metrics summary API validate the requested time range [#2902](https://github.com/grafana/tempo/pull/2902) (@mdisibio)
12+
* [CHANGE] Restructure Azure backends into versioned backends. Introduce `use_v2_sdk` config option for switching. [#2952](https://github.com/grafana/tempo/issues/2952) (@zalegrala)
13+
v1: [azure-storage-blob-go](https://github.com/Azure/azure-storage-blob-go) original (now deprecated) SDK
14+
v2: [azure-sdk-for-go](https://github.com/Azure/azure-sdk-for-go)
15+
* [CHANGE] Update alpine image version to 3.18. [#3046](https://github.com/grafana/tempo/pull/) (@joe-elliott)
16+
* [ENHANCEMENT] Add block indexes to vParquet2 and vParquet3 to improve trace by ID lookup [#2697](https://github.com/grafana/tempo/pull/2697) (@mdisibio)
517
* [ENHANCEMENT] Assert ingestion rate limits as early as possible [#2640](https://github.com/grafana/tempo/pull/2703) (@mghildiy)
618
* [ENHANCEMENT] Add several metrics-generator fields to user-configurable overrides [#2711](https://github.com/grafana/tempo/pull/2711) (@kvrhdn)
719
* [ENHANCEMENT] Update /api/metrics/summary to correctly handle missing attributes and improve performance of TraceQL `select()` queries. [#2765](https://github.com/grafana/tempo/pull/2765) (@mdisibio)

cmd/tempo-cli/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.16 as certs
1+
FROM alpine:3.18 as certs
22
RUN apk --update add ca-certificates
33
ARG TARGETARCH
44
COPY bin/linux/tempo-cli-${TARGETARCH} /tempo-cli

cmd/tempo-serverless/cloud-run/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# build the serverless container image
1010
#
1111
# todo: FROM scratch saves ~5MB which could be meaningful in a serverless setting, but using scratch gave strange errors on query.
12-
FROM alpine:3.16 as certs
12+
FROM alpine:3.18 as certs
1313
RUN apk --update add ca-certificates
1414
COPY ./main /main
1515
ENTRYPOINT ["/main"]

cmd/tempo-vulture/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.16 as certs
1+
FROM alpine:3.18 as certs
22
RUN apk --update add ca-certificates
33
ARG TARGETARCH
44
COPY bin/linux/tempo-vulture-${TARGETARCH} /tempo-vulture

cmd/tempo/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.16 as certs
1+
FROM alpine:3.18 as certs
22
RUN apk --update add ca-certificates
33
ARG TARGETARCH
44
COPY bin/linux/tempo-${TARGETARCH} /tempo

cmd/tempo/Dockerfile_debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM golang:alpine AS build-dlv
22

33
RUN go install github.com/go-delve/delve/cmd/dlv@latest
44

5-
FROM alpine:3.16 as certs
5+
FROM alpine:3.18 as certs
66
RUN apk --update add ca-certificates bash
77
ARG TARGETARCH
88
COPY bin/linux/tempo-${TARGETARCH} /tempo

0 commit comments

Comments
 (0)