Skip to content

Commit 3472926

Browse files
committed
feat(podman-exporter): bump to version 1.18.0
1 parent 4b82514 commit 3472926

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-podman-exporter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Build Prometheus Podman Exporter image
33
env:
4-
build_epoch: 2
4+
build_epoch: 0
55
on:
66
push:
77
branches:
@@ -21,7 +21,7 @@ jobs:
2121
packages: write
2222
strategy:
2323
matrix:
24-
version: ['1.17.2']
24+
version: ['1.18.0']
2525
steps:
2626
- name: Check-out repository
2727
uses: actions/checkout@v4

podman-exporter/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM docker.io/golang:1.24.6 AS build-binary
33

44
ARG TARGETOS
55
ARG TARGETARCH
6-
ARG VERSION="1.17.2"
6+
ARG VERSION="1.18.0"
77

88
RUN set -ex ; \
99
export DEBIAN_FRONTEND=noninteractive ; \
@@ -26,6 +26,7 @@ FROM cgr.dev/chainguard/wolfi-base:latest
2626

2727
ARG TARGETOS
2828
ARG TARGETARCH
29+
ARG VERSION="1.18.0"
2930

3031
COPY --from=build-binary --chown=0:0 --chmod=0755 \
3132
/build/bin/remote/prometheus-podman-exporter /usr/bin/podman-exporter
@@ -45,6 +46,7 @@ ENTRYPOINT [ "/usr/bin/podman-exporter" ]
4546
LABEL \
4647
org.opencontainers.image.title="podman-exporter" \
4748
org.opencontainers.image.source="https://github.com/f-bn/containers-images/podman-exporter" \
49+
org.opencontainers.image.version="${VERSION}" \
4850
org.opencontainers.image.description="Prometheus exporter for Podman environments exposing containers, pods, images, volumes and networks information" \
4951
org.opencontainers.image.licenses="Apache-2.0" \
5052
org.opencontainers.image.authors="Florian Bobin <contact@fbobin.me>"

0 commit comments

Comments
 (0)