From c94eb862195e0ddb9dbc6d4e7990153cff79b869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20BUISSON?= Date: Thu, 12 Mar 2026 15:25:37 +0100 Subject: [PATCH 1/2] feat: use consent mode --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index d2dff624..f5299caa 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ markdown-include==0.5.1 mkdocs==1.2.4 mkdocs-exclude==1.0.2 -mkdocs-traefiklabs>=100.0.7 +mkdocs-traefiklabs>=100.1.0 mkdocs-redirects==1.2.2 click==8.1.7 From 6a2d1b1a05255a695cba9aaeb10ff5fb787957a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20BUISSON?= Date: Tue, 17 Mar 2026 14:04:01 +0100 Subject: [PATCH 2/2] fix: CI --- Makefile | 2 +- integration/k3d/k3d.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f3ab0651..516835e0 100644 --- a/Makefile +++ b/Makefile @@ -102,7 +102,7 @@ tidy: go mod tidy k3d: - @command -v k3d >/dev/null 2>&1 || curl -s https://raw.githubusercontent.com/rancher/k3d/v5.4.4/install.sh | TAG=v5.4.4 bash + @command -v k3d >/dev/null 2>&1 || curl -s https://raw.githubusercontent.com/k3d-io/k3d/v5.8.3/install.sh | TAG=v5.8.3 bash docs-package: mkdir -p $(CURDIR)/pages diff --git a/integration/k3d/k3d.go b/integration/k3d/k3d.go index f6cb51da..3f094a89 100644 --- a/integration/k3d/k3d.go +++ b/integration/k3d/k3d.go @@ -20,7 +20,7 @@ import ( var ( k3sImage = "rancher/k3s" - k3sVersion = "v1.21.14-k3s1" + k3sVersion = "v1.32.13-k3s1" ) // DockerImage holds the configuration of a Docker image.