From 9e2f8fe9ef26befdd73c2adbb29f40bddbdb0d4f Mon Sep 17 00:00:00 2001 From: Hudong Wang Date: Mon, 21 Sep 2026 14:54:22 -0700 Subject: [PATCH 1/2] CLDYCON-7961: release 2.14.16 - bump Alpine to 3.24.2 to fix curl/openssl CVEs --- charts/metrics-agent/Chart.yaml | 4 ++-- charts/metrics-agent/values.yaml | 2 +- deploy/docker/Dockerfile | 2 +- version/version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/metrics-agent/Chart.yaml b/charts/metrics-agent/Chart.yaml index 2cf97c9..00e193d 100644 --- a/charts/metrics-agent/Chart.yaml +++ b/charts/metrics-agent/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.14.15 +version: 2.14.16 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.14.15 +appVersion: 2.14.16 diff --git a/charts/metrics-agent/values.yaml b/charts/metrics-agent/values.yaml index 4990f31..ac18f8d 100644 --- a/charts/metrics-agent/values.yaml +++ b/charts/metrics-agent/values.yaml @@ -30,7 +30,7 @@ uploadRegion: "us-west-2" image: name: cloudability/metrics-agent - tag: 2.14.15 + tag: 2.14.16 pullPolicy: Always imagePullSecrets: [] diff --git a/deploy/docker/Dockerfile b/deploy/docker/Dockerfile index dfa2ca4..5205ce2 100644 --- a/deploy/docker/Dockerfile +++ b/deploy/docker/Dockerfile @@ -13,7 +13,7 @@ ENV GOOS=linux COPY . /go/src/${package} RUN go build -FROM alpine:3.24.1 +FROM alpine:3.24.2 ARG package ARG application diff --git a/version/version.go b/version/version.go index edddb15..34cd093 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // VERSION is the current version of the agent -var VERSION = "2.14.15" +var VERSION = "2.14.16" From 9fcda4d6bc8fc4ae63ca59d5c37012203cfc8cc0 Mon Sep 17 00:00:00 2001 From: Hudong Wang Date: Mon, 21 Sep 2026 15:58:33 -0700 Subject: [PATCH 2/2] Add --no-cache to apk add per review --- deploy/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker/Dockerfile b/deploy/docker/Dockerfile index 5205ce2..7c7da03 100644 --- a/deploy/docker/Dockerfile +++ b/deploy/docker/Dockerfile @@ -19,7 +19,7 @@ ARG application # Allow delve to run on Alpine based containers. -RUN apk --update upgrade && apk add ca-certificates && apk add curl +RUN apk --update upgrade && apk add --no-cache ca-certificates && apk add --no-cache curl # Remove unnecessary netcat tool RUN apk del netcat-openbsd && apk del netcat-openbsd-doc && rm /var/cache/apk/* && rm /usr/bin/nc