3 Commits

Author SHA1 Message Date
cdbd05e85c fix: Dockerimage FROM buildargs (#5)
All checks were successful
Update Traefik Version / update-version (push) Successful in 4s
Reviewed-on: #5
2026-03-11 16:00:31 +00:00
giabot
0542ddfa2b patch: update traefik_version to v3.6.10 2026-03-11 10:54:04 -03:00
22daaaab49 feat: implement molecule to test role (#4)
Reviewed-on: #4
Fix #3
2026-03-11 13:50:02 +00:00
3 changed files with 11 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
## Install configuration
traefik_name: 'traefik'
traefik_version: 'v3.6.7'
traefik_version: 'v3.6.10'
traefik_opt: '/opt/{{ traefik_name }}'
traefik_etc: '/etc/{{ traefik_name }}'
traefik_url: 'https://github.com/{{ traefik_name }}/{{ traefik_name }}/releases/download/{{ traefik_version }}/{{ traefik_name }}_{{ traefik_version }}'

View File

@@ -1,4 +1,5 @@
FROM docker.io/library/debian:stable
ARG MOLECULE_DISTRO=docker.io/library/debian:stable
FROM ${MOLECULE_DISTRO}
RUN apt-get update && \
apt-get install -y --no-install-recommends \

View File

@@ -13,6 +13,8 @@ platforms:
image: docker.io/library/debian:stable
pre_build_image: false
dockerfile: Dockerfile
buildargs:
MOLECULE_DISTRO: docker.io/library/debian:stable
privileged: true
systemd: always
command: /usr/sbin/init
@@ -21,6 +23,8 @@ platforms:
image: docker.io/library/debian:oldstable
pre_build_image: false
dockerfile: Dockerfile
buildargs:
MOLECULE_DISTRO: docker.io/library/debian:oldstable
privileged: true
systemd: always
command: /usr/sbin/init
@@ -29,6 +33,8 @@ platforms:
image: docker.io/library/ubuntu:latest
pre_build_image: false
dockerfile: Dockerfile
buildargs:
MOLECULE_DISTRO: docker.io/library/ubuntu:latest
privileged: true
systemd: always
command: /usr/sbin/init
@@ -37,6 +43,8 @@ platforms:
image: docker.io/library/ubuntu:jammy
pre_build_image: false
dockerfile: Dockerfile
buildargs:
MOLECULE_DISTRO: docker.io/library/ubuntu:jammy
privileged: true
systemd: always
command: /usr/sbin/init