Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 477 for audiences (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Issuer) DeepCopyInto(out *Issuer) {
    	*out = *in
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Issuer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. pkg/kubelet/token/token_manager.go

    	}
    
    	var ref authenticationv1.BoundObjectReference
    	if tr.Spec.BoundObjectRef != nil {
    		ref = *tr.Spec.BoundObjectRef
    	}
    
    	return fmt.Sprintf("%q/%q/%#v/%#v/%#v", name, namespace, tr.Spec.Audiences, exp, ref)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  3. pkg/config/security/security_test.go

    		},
    		{
    			key:    "source.principal",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.principal",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.audiences",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.presenter",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.claims[id]",
    			values: []string{"123"},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier.go

    	outterOrList := []*envoy_jwt.JwtRequirement{}
    
    	for i, jwtRule := range jwtRules {
    		provider := &envoy_jwt.JwtProvider{
    			Issuer:               jwtRule.Issuer,
    			Audiences:            jwtRule.Audiences,
    			Forward:              jwtRule.ForwardOriginalToken,
    			ForwardPayloadHeader: jwtRule.OutputPayloadToHeader,
    			PayloadInMetadata:    jwtRule.Issuer,
    		}
    		if useExtendedJwt {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. pkg/config/security/security.go

    	attrRequestPrincipal = "request.auth.principal" // authenticated principal of the request.
    	attrRequestAudiences = "request.auth.audiences" // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter" // authorized presenter of the credential.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pkg/volume/projected/projected_test.go

    				tr := action.(clitesting.CreateAction).GetObject().(*authenticationv1.TokenRequest)
    				scheme.Default(tr)
    				if len(tr.Spec.Audiences) == 0 {
    					tr.Spec.Audiences = []string{"https://api"}
    				}
    				tr.Status.Token = fmt.Sprintf("%v:%v:%d:%v", action.GetNamespace(), "foo", *tr.Spec.ExpirationSeconds, tr.Spec.Audiences)
    				return true, tr, nil
    			}))
    
    			tempDir, host := newTestHost(t, client)
    			defer os.RemoveAll(tempDir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  7. pkg/volume/projected/projected.go

    				mode = 0600
    			}
    
    			var auds []string
    			if len(tp.Audience) != 0 {
    				auds = []string{tp.Audience}
    			}
    			tr, err := s.plugin.getServiceAccountToken(s.pod.Namespace, s.pod.Spec.ServiceAccountName, &authenticationv1.TokenRequest{
    				Spec: authenticationv1.TokenRequestSpec{
    					Audiences:         auds,
    					ExpirationSeconds: tp.ExpirationSeconds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    				tr := action.(clitesting.CreateAction).GetObject().(*authenticationv1.TokenRequest)
    				scheme.Default(tr)
    				if len(tr.Spec.Audiences) == 0 {
    					tr.Spec.Audiences = []string{"api"}
    				}
    				tr.Status.Token = fmt.Sprintf("%v:%v:%d:%v", action.GetNamespace(), testAccount, *tr.Spec.ExpirationSeconds, tr.Spec.Audiences)
    				tr.Status.ExpirationTimestamp = meta.NewTime(time.Unix(1, 1))
    				return true, tr, nil
    			}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/model.go

    	attrRequestPrincipal = "request.auth.principal"      // authenticated principal of the request.
    	attrRequestAudiences = "request.auth.audiences"      // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter"      // authorized presenter of the credential.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pkg/kube/client.go

    		})
    	}
    	return g.Wait()
    }
    
    func (c *client) CreatePerRPCCredentials(_ context.Context, tokenNamespace, tokenServiceAccount string, audiences []string,
    	expirationSeconds int64,
    ) (credentials.PerRPCCredentials, error) {
    	return NewRPCCredentials(c, tokenNamespace, tokenServiceAccount, audiences, expirationSeconds, 60)
    }
    
    func (c *client) UtilFactory() PartialFactory {
    	return c.clientFactory
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top