File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -395,6 +395,7 @@ skipper_ingress_routegroup_crd_require_hosts: "true"
395395skipper_open_policy_agent_enabled : " false"
396396skipper_open_policy_agent_styra_token : " "
397397skipper_open_policy_agent_data_preprocessing_optimization_enabled : " true"
398+ skipper_open_policy_agent_preloading_enabled : " false"
398399
399400# Default timeout value in seconds for outgoing http calls from Open Policy Agent in a skipper filter
400401skipper_open_policy_agent_styra_response_header_timeout : " 2"
@@ -404,6 +405,11 @@ skipper_open_policy_agent_decision_logs_buffer_type_event_enable: "false"
404405# Decision logging sets the maximum number of decision log events that can be buffered before being dropped
405406skipper_open_policy_agent_decision_logs_buffer_type_event_limit : " 10000"
406407
408+ # Open Policy Agent JWT cache configuration
409+ skipper_open_policy_agent_jwt_cache_enable : " false"
410+ # Sets default value for maximum number of entries in the Open Policy Agent JWT cache
411+ skipper_open_policy_agent_jwt_cache_max_num_entries : " 1000"
412+
407413#
408414# FabricGateway controller config
409415#
Original file line number Diff line number Diff line change 3737 buffer_type: "event"
3838 buffer_size_limit_events: {{ .Cluster.ConfigItems.skipper_open_policy_agent_decision_logs_buffer_type_event_limit }}
3939 {{ end }}
40+ {{ if eq .Cluster.ConfigItems.skipper_open_policy_agent_jwt_cache_enable "true" }}
41+ caching:
42+ inter_query_builtin_value_cache:
43+ named:
44+ io_jwt:
45+ max_num_entries: {{ .Cluster.ConfigItems.skipper_open_policy_agent_jwt_cache_max_num_entries }}
46+ {{ end }}
4047 envoymetadata.json : |-
4148 {
4249 "filter_metadata": {
Original file line number Diff line number Diff line change 11{{/* image-updater-bot detects *image variables so use name with suffix to disable it for the main image */}}
22
3- {{ $main_image_updated_manually := "container-registry.zalando.net/teapot/skipper-internal:v0.22.127-1233 " }}
3+ {{ $main_image_updated_manually := "container-registry.zalando.net/teapot/skipper-internal:v0.22.141-1245 " }}
44{{ $canary_image := "container-registry.zalando.net/teapot/skipper-internal:v0.22.141-1245" }}
55
66{{/* Optional canary arguments separated by "[cf724afc]" to allow whitespaces, e.g. "-foo=has a whitespace[cf724afc]-baz=qux" */}}
@@ -318,6 +318,7 @@ spec:
318318 - " -open-policy-agent-config-template=/etc/skipper/open-policy-agent/opaconfig.yaml"
319319 - " -open-policy-agent-envoy-metadata=/etc/skipper/open-policy-agent/envoymetadata.json"
320320 - " -enable-open-policy-agent-data-preprocessing-optimization={{ .Cluster.ConfigItems.skipper_open_policy_agent_data_preprocessing_optimization_enabled }}"
321+ - " -enable-open-policy-agent-preloading={{ .Cluster.ConfigItems.skipper_open_policy_agent_preloading_enabled }}"
321322{{ end }}
322323{{ if or (eq .Cluster.ConfigItems.nlb_switch "pre") (eq .Cluster.ConfigItems.nlb_switch "exec") }}
323324 - " -forwarded-headers=X-Forwarded-For,X-Forwarded-Proto=https,X-Forwarded-Port=443"
You can’t perform that action at this time.
0 commit comments