Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 334 for audiences (0.3 sec)

  1. pkg/serviceaccount/claims_test.go

    	}{
    		{
    			// pod and secret
    			sa:  sa,
    			pod: pod,
    			sec: sec,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "internal error, token can only be bound to one object type",
    		},
    		{
    			// pod
    			sa:  sa,
    			pod: pod,
    			// empty audience
    			aud: []string{},
    			exp: 100,
    
    			sc: &jwt.Claims{
    				Subject:   "system:serviceaccount:myns:mysvcacct",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pkg/registry/storage/csidriver/strategy_test.go

    			wantGeneration: 1,
    		},
    		{
    			name:                  "service account token feature enabled, before: none, update: audience=gcp",
    			old:                   driverWithNothing,
    			update:                driverWithServiceAccountTokenGCP,
    			wantTokenRequests:     []storage.TokenRequest{{Audience: gcp}},
    			wantRequiresRepublish: &enabled,
    			wantGeneration:        1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K 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/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIDriver.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pyproject.toml

    readme = "README.md"
    requires-python = ">=3.8"
    authors = [
        { name = "Sebastián Ramírez", email = "******@****.***" },
    ]
    classifiers = [
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python",
        "Topic :: Internet",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIDriver.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

            "properties": {
              "audiences": {
                "description": "Audiences are the intendend audiences of the token. A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top