Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for audiences (0.18 sec)

  1. 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)
  2. cmd/jwt.go

    func newCachedAuthToken() func(audience string) string {
    	fn := func(accessKey, secretKey, audience string) (s string, err error) {
    		k := cacheKey{accessKey: accessKey, secretKey: secretKey, audience: audience}
    
    		var ok bool
    		s, ok = cacheLRU.Get(k)
    		if !ok {
    			s, err = authenticateNode(accessKey, secretKey, audience)
    			if err != nil {
    				return "", err
    			}
    			cacheLRU.Add(k, s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. security/pkg/credentialfetcher/plugin/gce.go

    	tokenMutex sync.RWMutex
    }
    
    // CreateGCEPlugin creates a Google credential fetcher plugin. Return the pointer to the created plugin.
    func CreateGCEPlugin(audience, jwtPath, identityProvider string) *GCEPlugin {
    	p := &GCEPlugin{
    		aud:              audience,
    		jwtPath:          jwtPath,
    		identityProvider: identityProvider,
    		closing:          make(chan bool),
    	}
    	if rotateToken {
    		go p.startTokenRotationJob()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. releasenotes/notes/jwt-aud.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 49913
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 159 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIDriver.yaml

      uid: uidValue
    spec:
      attachRequired: true
      fsGroupPolicy: fsGroupPolicyValue
      podInfoOnMount: true
      requiresRepublish: true
      seLinuxMount: true
      storageCapacity: true
      tokenRequests:
      - audience: audienceValue
        expirationSeconds: 2
      volumeLifecycleModes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSIDriver.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSIDriver.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSIDriver.yaml

      uid: uidValue
    spec:
      attachRequired: true
      fsGroupPolicy: fsGroupPolicyValue
      podInfoOnMount: true
      requiresRepublish: true
      seLinuxMount: true
      storageCapacity: true
      tokenRequests:
      - audience: audienceValue
        expirationSeconds: 2
      volumeLifecycleModes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.CSIDriver.yaml

      uid: uidValue
    spec:
      attachRequired: true
      fsGroupPolicy: fsGroupPolicyValue
      podInfoOnMount: true
      requiresRepublish: true
      seLinuxMount: true
      storageCapacity: true
      tokenRequests:
      - audience: audienceValue
        expirationSeconds: 2
      volumeLifecycleModes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSIDriver.yaml

      uid: uidValue
    spec:
      attachRequired: true
      fsGroupPolicy: fsGroupPolicyValue
      podInfoOnMount: true
      requiresRepublish: true
      seLinuxMount: true
      storageCapacity: true
      tokenRequests:
      - audience: audienceValue
        expirationSeconds: 2
      volumeLifecycleModes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top