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..7c7da03 100644 --- a/deploy/docker/Dockerfile +++ b/deploy/docker/Dockerfile @@ -13,13 +13,13 @@ ENV GOOS=linux COPY . /go/src/${package} RUN go build -FROM alpine:3.24.1 +FROM alpine:3.24.2 ARG package 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 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"