traefik: bump crowdsec-bouncer plugin v1.4.2 -> v1.6.0 (fix stream not pulling)
The crowdsec-bouncer Yaegi plugin pinned at v1.4.2 loads on Traefik 3.7.5 but its decision-stream goroutine never runs — no Traefik pod ever calls the LAPI stream (verified: no traefik-pod bouncer entry / no @pod-ip auto-registration), and it logs nothing. All deps are healthy (LAPI 200 + full ban list reachable from the traefik ns, key valid, redis PONG, config correct, no NetworkPolicies), so CrowdSec enforced nothing despite the bouncer now being registered. This is the Traefik-v3 / Yaegi plugin-incompat class that already killed rewrite-body here. v1.4.2 predates Nov 2025; latest is v1.6.0. Bump to v1.6.0 (initContainer download URL + state.json + experimental.plugins version). Config-verified compatible: every key we use survives (crowdsecMode, crowdsecLapiKey/Host, updateMaxFailure, redisCache*, clientTrustedIPs, all captcha* incl. turnstile); v1.6.0 also moves logging to slog/trace for future diagnosis. Pinned, not auto-updated (Keel can't manage a Yaegi plugin, and plugin bumps must be tested against the running Traefik/Yaegi). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
78095aa273
commit
531efb218d
1 changed files with 4 additions and 4 deletions
|
|
@ -101,12 +101,12 @@ resource "helm_release" "traefik" {
|
||||||
"set -e; ",
|
"set -e; ",
|
||||||
"STORAGE=/plugins-storage; ",
|
"STORAGE=/plugins-storage; ",
|
||||||
"mkdir -p \"$STORAGE/archives/github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin\"; ",
|
"mkdir -p \"$STORAGE/archives/github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin\"; ",
|
||||||
"wget -q -T 30 -O \"$STORAGE/archives/github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin/v1.4.2.zip\" ",
|
"wget -q -T 30 -O \"$STORAGE/archives/github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin/v1.6.0.zip\" ",
|
||||||
"\"https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin/archive/refs/tags/v1.4.2.zip\"; ",
|
"\"https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin/archive/refs/tags/v1.6.0.zip\"; ",
|
||||||
"mkdir -p \"$STORAGE/archives/github.com/Aetherinox/traefik-api-token-middleware\"; ",
|
"mkdir -p \"$STORAGE/archives/github.com/Aetherinox/traefik-api-token-middleware\"; ",
|
||||||
"wget -q -T 30 -O \"$STORAGE/archives/github.com/Aetherinox/traefik-api-token-middleware/v0.1.4.zip\" ",
|
"wget -q -T 30 -O \"$STORAGE/archives/github.com/Aetherinox/traefik-api-token-middleware/v0.1.4.zip\" ",
|
||||||
"\"https://github.com/Aetherinox/traefik-api-token-middleware/archive/refs/tags/v0.1.4.zip\"; ",
|
"\"https://github.com/Aetherinox/traefik-api-token-middleware/archive/refs/tags/v0.1.4.zip\"; ",
|
||||||
"printf '{\"github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin\":\"v1.4.2\",\"github.com/Aetherinox/traefik-api-token-middleware\":\"v0.1.4\"}' ",
|
"printf '{\"github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin\":\"v1.6.0\",\"github.com/Aetherinox/traefik-api-token-middleware\":\"v0.1.4\"}' ",
|
||||||
"> \"$STORAGE/archives/state.json\"; ",
|
"> \"$STORAGE/archives/state.json\"; ",
|
||||||
"echo \"Plugins pre-downloaded successfully\"",
|
"echo \"Plugins pre-downloaded successfully\"",
|
||||||
])]
|
])]
|
||||||
|
|
@ -232,7 +232,7 @@ resource "helm_release" "traefik" {
|
||||||
plugins = {
|
plugins = {
|
||||||
crowdsec-bouncer = {
|
crowdsec-bouncer = {
|
||||||
moduleName = "github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin"
|
moduleName = "github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin"
|
||||||
version = "v1.4.2"
|
version = "v1.6.0"
|
||||||
}
|
}
|
||||||
# Static-token bearer/header auth middleware. Used by services that
|
# Static-token bearer/header auth middleware. Used by services that
|
||||||
# need gateway-level API-key/bearer enforcement without app-layer auth
|
# need gateway-level API-key/bearer enforcement without app-layer auth
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue