Skip to content

Commit

Permalink
skipper: disable basicAuth filter
Browse files Browse the repository at this point in the history
[basicAuth](https://github.com/zalando/skipper/blob/master/docs/reference/filters.md#basicauth) filter
requires htpasswd file that is not available in the ingress setup.

See related zalando/skipper#3327

Signed-off-by: Alexander Yastrebov <[email protected]>
  • Loading branch information
AlexanderYastrebov committed Dec 4, 2024
1 parent 18ec712 commit 3ba8e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ skipper_default_filters: 'disableAccessLog(2,3,404,429) -> fifo(2000,20,"1s")'
# skipper_default_filters_authentication defines filters that implement default request authentication
skipper_default_filters_authentication: ''
skipper_default_filters_append: 'stateBagToTag("auth-user", "client.uid")'
skipper_disabled_filters: "static,bearerinjector,setRequestHeaderFromSecret"
skipper_disabled_filters: "static,bearerinjector,setRequestHeaderFromSecret,basicAuth"
skipper_lua_sources: "file"
skipper_edit_route_placeholders: ""
skipper_ingress_inline_routes: ""
Expand Down Expand Up @@ -1171,7 +1171,7 @@ sysctl_settings: ""
# must ensure that no existing resources should be annotated with a TTL.
# This can happen in the case where a test deployment is deployed to production
# as is. Currently, it's a no-op since kube-janitor doesn't run in production.
#
#
# This is needed until we can implement namespace prefix matching to reduce
# the scope of kube-janitor to a set of namespace names that aren't known
# at the time of enaling kube-janitor. Once the feature is in place, it would
Expand Down

0 comments on commit 3ba8e96

Please sign in to comment.