Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jwtPolicies (0.09 sec)

  1. pilot/pkg/security/authn/policy_applier.go

    type policyApplier struct {
    	// processedJwtRules is the consolidate JWT rules from all jwtPolicies.
    	processedJwtRules []*v1beta1.JWTRule
    
    	consolidatedPeerPolicy MergedPeerAuthentication
    
    	push *model.PushContext
    }
    
    // newPolicyApplier returns new applier for v1beta1 authentication policies.
    func newPolicyApplier(rootNamespace string,
    	jwtPolicies []*config.Config,
    	peerPolicies []*config.Config,
    	push *model.PushContext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.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 {
    				if uri := r.GetJwksUri(); len(uri) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top