Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for audiences (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

          volumes:
    __EXTRA_VOLS__
            - name: konnectivity-agent-token
              projected:
                sources:
                  - serviceAccountToken:
                      path: konnectivity-agent-token
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation_test.go

    				TokenRequests:     []storage.TokenRequest{{Audience: ""}},
    				RequiresRepublish: &notRequiresRepublish,
    			},
    		},
    	}, {
    		desc: "valid - TokenRequests has tokens with different audience",
    		csiDriver: &storage.CSIDriver{
    			ObjectMeta: metav1.ObjectMeta{Name: driverName},
    			Spec: storage.CSIDriverSpec{
    				TokenRequests:     []storage.TokenRequest{{}, {Audience: gcp}, {Audience: aws}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top