From 739a153ce4825e66317f4387981505274fd47bd9 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:45:30 +0000 Subject: [PATCH 1/2] Initial plan From 97ce8fb684bf31b92f5197b014a8f40fb0606ac6 Mon Sep 17 00:00:00 2001 From: "anthropic-code-agent[bot]" <242468646+Claude@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:48:44 +0000 Subject: [PATCH 2/2] Add impromptu installation to Dockerfile Install impromptu v0.1.3 from GitHub releases. Impromptu is a tool that scrapes metrics from Prometheus endpoints and visualizes them in the CLI using PromQL queries. The installation follows the same pattern as other tools in the Dockerfile, with proper architecture mapping (amd64->x86_64, arm64->arm64) and includes renovate annotations for automated version updates. Co-authored-by: Moulick <15780903+Moulick@users.noreply.github.com> --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index e38e067..bb37921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -114,3 +114,12 @@ RUN curl -L "https://github.com/kubernetes-sigs/kustomize/releases/download/kust | tar -zxvf - -C /usr/local/bin kustomize && \ chmod +x /usr/local/bin/kustomize && \ kustomize version + +# https://github.com/lovromazgon/impromptu/releases +# renovate: datasource=github-releases depName=impromptu packageName=lovromazgon/impromptu +ENV IMPROMPTU_VERSION=v0.1.3 +RUN IMPROMPTU_ARCH=$([ "${TARGETARCH}" = "amd64" ] && echo "x86_64" || echo "${TARGETARCH}") && \ + curl -L "https://github.com/lovromazgon/impromptu/releases/download/${IMPROMPTU_VERSION}/impromptu_${IMPROMPTU_VERSION#v}_Linux_${IMPROMPTU_ARCH}.tar.gz" \ + | tar -zxvf - -C /usr/local/bin impromptu && \ + chmod +x /usr/local/bin/impromptu && \ + impromptu --version