Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Traefik to v2.9.0-rc2 #13146

Conversation

ldez
Copy link
Contributor

@ldez ldez commented Sep 14, 2022

Hello,

This PR updates Traefik to v2.9.0-rc2.

/cc @ddtmachado @kevinpollet @rtribotte

Cheers

@github-actions
Copy link

Diff for e4a6bf2:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index c0a196b..ce53a87 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -26,6 +26,19 @@ GitCommit: a0095c5d9ed66a5ef850a707f61e6e5b8644eda0
 Directory: windows/1809
 Constraints: windowsservercore-1809
 
+Tags: v2.9.0-rc2, 2.9.0-rc2, v2.9, 2.9, beaufort
+Architectures: amd64, arm32v6, arm64v8, s390x
+GitRepo: https://github.com/traefik/traefik-library-image.git
+GitCommit: 01bff12b347ebd9cc1f1dad13b01cd987fea2880
+Directory: alpine
+
+Tags: v2.9.0-rc2-windowsservercore-1809, 2.9.0-rc2-windowsservercore-1809, v2.9-windowsservercore-1809, 2.9-windowsservercore-1809, beaufort-windowsservercore-1809
+Architectures: windows-amd64
+GitRepo: https://github.com/traefik/traefik-library-image.git
+GitCommit: 01bff12b347ebd9cc1f1dad13b01cd987fea2880
+Directory: windows/1809
+Constraints: windowsservercore-1809
+
 Tags: v1.7.34, 1.7.34, v1.7, 1.7, maroilles
 Architectures: amd64, arm32v6, arm64v8
 GitRepo: https://github.com/traefik/traefik-library-image.git
diff --git a/_bashbrew-list b/_bashbrew-list
index ff5d014..111efac 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -8,6 +8,12 @@ traefik:2.8
 traefik:2.8-windowsservercore-1809
 traefik:2.8.5
 traefik:2.8.5-windowsservercore-1809
+traefik:2.9
+traefik:2.9-windowsservercore-1809
+traefik:2.9.0-rc2
+traefik:2.9.0-rc2-windowsservercore-1809
+traefik:beaufort
+traefik:beaufort-windowsservercore-1809
 traefik:latest
 traefik:maroilles
 traefik:maroilles-alpine
@@ -22,6 +28,10 @@ traefik:v2.8
 traefik:v2.8-windowsservercore-1809
 traefik:v2.8.5
 traefik:v2.8.5-windowsservercore-1809
+traefik:v2.9
+traefik:v2.9-windowsservercore-1809
+traefik:v2.9.0-rc2
+traefik:v2.9.0-rc2-windowsservercore-1809
 traefik:vacherin
 traefik:vacherin-windowsservercore-1809
 traefik:windowsservercore-1809
diff --git a/traefik_windowsservercore-1809/Dockerfile b/traefik_beaufort-windowsservercore-1809/Dockerfile
similarity index 87%
copy from traefik_windowsservercore-1809/Dockerfile
copy to traefik_beaufort-windowsservercore-1809/Dockerfile
index d294569..d58cbf2 100644
--- a/traefik_windowsservercore-1809/Dockerfile
+++ b/traefik_beaufort-windowsservercore-1809/Dockerfile
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:1809
 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
 
 RUN Invoke-WebRequest \
-        -Uri "https://github.com/traefik/traefik/releases/download/v2.8.5/traefik_v2.8.5_windows_amd64.zip" \
+        -Uri "https://github.com/traefik/traefik/releases/download/v2.9.0-rc2/traefik_v2.9.0-rc2_windows_amd64.zip" \
         -OutFile "/traefik.zip"; \
     Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
     Remove-Item "/traefik.zip" -Force
@@ -15,5 +15,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
     org.opencontainers.image.url="https://traefik.io" \
     org.opencontainers.image.title="Traefik" \
     org.opencontainers.image.description="A modern reverse-proxy" \
-    org.opencontainers.image.version="v2.8.5" \
+    org.opencontainers.image.version="v2.9.0-rc2" \
     org.opencontainers.image.documentation="https://docs.traefik.io"
diff --git a/traefik_latest/Dockerfile b/traefik_beaufort/Dockerfile
similarity index 87%
copy from traefik_latest/Dockerfile
copy to traefik_beaufort/Dockerfile
index d40ab04..5568166 100644
--- a/traefik_latest/Dockerfile
+++ b/traefik_beaufort/Dockerfile
@@ -9,7 +9,7 @@ RUN set -ex; \
 		s390x) arch='s390x' ;; \
 		*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
 	esac; \
-	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.8.5/traefik_v2.8.5_linux_$arch.tar.gz"; \
+	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.9.0-rc2/traefik_v2.9.0-rc2_linux_$arch.tar.gz"; \
 	tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; \
 	rm -f /tmp/traefik.tar.gz; \
 	chmod +x /usr/local/bin/traefik
@@ -23,5 +23,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
 	org.opencontainers.image.url="https://traefik.io" \
 	org.opencontainers.image.title="Traefik" \
 	org.opencontainers.image.description="A modern reverse-proxy" \
-	org.opencontainers.image.version="v2.8.5" \
+	org.opencontainers.image.version="v2.9.0-rc2" \
 	org.opencontainers.image.documentation="https://docs.traefik.io"
diff --git a/traefik_latest/entrypoint.sh b/traefik_beaufort/entrypoint.sh
similarity index 100%
copy from traefik_latest/entrypoint.sh
copy to traefik_beaufort/entrypoint.sh

Relevant Maintainers:

@tianon tianon merged commit ccf438c into docker-library:master Sep 14, 2022
@ldez ldez deleted the traefik-new-version-01bff12b347ebd9cc1f1dad13b01cd987fea2880 branch July 25, 2023 00:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants