Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for requestAuthentications (0.23 sec)

  1. tests/integration/security/jwt_test.go

    								WithAuthz(jwt.TokenIssuer1).
    								Build()
    							opts.Check = check.OK()
    						},
    					},
    					{
    						name: "allow with sub-1 token despite \"ignored\" RequestAuthentication (enableGatewayAPISelectorPolicies flag = true)",
    						customizeCall: func(opts *echo.CallOptions, to echo.Target) {
    							opts.HTTP.Path = "/"
    							opts.HTTP.Headers = headers.New().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    		}
    	}
    	// add services from RequestAuthentication.JwtRules.JwksUri
    	if features.JwksFetchMode != jwt.Istiod {
    		forWorkload := PolicyMatcherForProxy(proxy)
    		jwtPolicies := ps.AuthnPolicies.GetJwtPoliciesForWorkload(forWorkload)
    		for _, cfg := range jwtPolicies {
    			rules := cfg.Spec.(*v1beta1.RequestAuthentication).JwtRules
    			for _, r := range rules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    	{
    		name:       "KubernetesGatewaySelector",
    		inputFiles: []string{"testdata/k8sgateway-selector.yaml"},
    		analyzer:   &k8sgateway.SelectorAnalyzer{},
    		expected: []message{
    			{msg.IneffectiveSelector, "RequestAuthentication default/ra-ineffective"},
    			{msg.IneffectiveSelector, "AuthorizationPolicy default/ap-ineffective"},
    			{msg.IneffectiveSelector, "WasmPlugin default/wasmplugin-ineffective"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    	// they will be applied to all namespaces within the cluster.
    	clusterScopedKnownConfigTypes = sets.New(
    		kind.EnvoyFilter,
    		kind.AuthorizationPolicy,
    		kind.RequestAuthentication,
    		kind.WasmPlugin,
    	)
    )
    
    type hostClassification struct {
    	exactHosts sets.Set[host.Name]
    	allHosts   []host.Name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    o"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"max(pilot_k8s_cfg_events{type=\"RequestAuthentication\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"RequestAuthentication\", event=\"delete\"}) or max(up * 0))","format":"time_series","intervalFactor":1,"refId":"A"}],"title":"RequestAuthentication Policies","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    var ValidateRequestAuthentication = RegisterValidateFunc("ValidateRequestAuthentication",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.RequestAuthentication)
    		if !ok {
    			return nil, errors.New("cannot cast to RequestAuthentication")
    		}
    
    		errs := Validation{}
    		errs = AppendValidation(errs,
    			validateOneOfSelectorType(in.GetSelector(), in.GetTargetRef(), in.GetTargetRefs()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    				opt.HTTP.Path = "/"
    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenIssuer1).
    					Build()
    				opt.Check = check.OK()
    			})
    
    			t.NewSubTest("deny with sub-3 token due to ignored RequestAuthentication").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/"
    				opt.HTTP.Headers = headers.New().
    					WithAuthz(jwt.TokenIssuer3).
    					Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

            {{- end }}
          {{- end }}
        route:
        - destination:
            host: {{ .dstSvc }}
    ---
    `
    	configAll := configRoute + `
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default
      namespace: {{.SystemNamespace | default "istio-system"}}
    spec:
      jwtRules:
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top