Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requestAuthentications (0.2 sec)

  1. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.RequestAuthentication:
    		oldRes := &apiistioioapisecurityv1beta1.RequestAuthentication{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapisecurityv1beta1.RequestAuthentication)),
    		}
    		modRes := &apiistioioapisecurityv1beta1.RequestAuthentication{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapisecurityv1beta1.RequestAuthentication)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K 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. 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)
Back to top