Skip to content

Commit

Permalink
fix(Traefik): support for entrypoint option on allowACMEByPass
Browse files Browse the repository at this point in the history
  • Loading branch information
mback2k authored Nov 4, 2024
1 parent 218333c commit 18fcb8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion traefik/templates/_podtemplate.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@
{{- if (semverCompare "<3.1.3-0" $version) }}
{{- fail "ERROR: allowACMEByPass has been introduced with Traefik v3.1.3+" -}}
{{- end }}
- "--entryPoints.name.allowACMEByPass=true"
- "--entryPoints.{{ $entrypoint }}.allowACMEByPass=true"
{{- end }}
{{- if $config.forwardedHeaders }}
{{- if $config.forwardedHeaders.trustedIPs }}
Expand Down
2 changes: 1 addition & 1 deletion traefik/tests/traefik-config_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ tests:
asserts:
- contains:
path: spec.template.spec.containers[0].args
content: "--entryPoints.name.allowACMEByPass=true"
content: "--entryPoints.websecure.allowACMEByPass=true"
- it: should fail when setting ACME bypass with Proxy v3.1.0
set:
image:
Expand Down

0 comments on commit 18fcb8c

Please sign in to comment.