Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 411 for audiences (0.3 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.TokenRequest.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "audiences": [
          "audiencesValue"
        ],
        "expirationSeconds": 4,
        "boundObjectRef": {
          "kind": "kindValue",
          "apiVersion": "apiVersionValue",
          "name": "nameValue",
          "uid": "uidValue"
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// audiences is the set of acceptable audiences the JWT must be issued to.
    	// At least one of the entries must match the "aud" claim in presented JWTs.
    	// Same value as the --oidc-client-id flag (though this field supports an array).
    	// Required to be non-empty.
    	// +required
    	Audiences []string `json:"audiences"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if len(m.Audiences) > 0 {
    		for iNdEx := len(m.Audiences) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Audiences[iNdEx])
    			copy(dAtA[i:], m.Audiences[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Audiences[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	i -= len(m.Token)
    	copy(dAtA[i:], m.Token)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	seenAudiences := sets.NewString()
    	for i, audience := range audiences {
    		fldPath := fldPath.Index(i)
    		if len(audience) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath, "audience can't be empty"))
    		}
    		if seenAudiences.Has(audience) {
    			allErrs = append(allErrs, field.Duplicate(fldPath, audience))
    		}
    		seenAudiences.Insert(audience)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.TokenRequest.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      audiences:
      - audiencesValue
      boundObjectRef:
        apiVersion: apiVersionValue
        kind: kindValue
        name: nameValue
        uid: uidValue
      expirationSeconds: 4
    status:
      expirationTimestamp: "2002-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// audiences is the set of acceptable audiences the JWT must be issued to.
    	// At least one of the entries must match the "aud" claim in presented JWTs.
    	// Same value as the --oidc-client-id flag (though this field supports an array).
    	// Required to be non-empty.
    	// +required
    	Audiences []string `json:"audiences"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.TokenRequest.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      audiences:
      - audiencesValue
      boundObjectRef:
        apiVersion: apiVersionValue
        kind: kindValue
        name: nameValue
        uid: uidValue
      expirationSeconds: 4
    status:
      expirationTimestamp: "2002-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.TokenRequest.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "audiences": [
          "audiencesValue"
        ],
        "expirationSeconds": 4,
        "boundObjectRef": {
          "kind": "kindValue",
          "apiVersion": "apiVersionValue",
          "name": "nameValue",
          "uid": "uidValue"
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authenticator/config.go

    	OIDCSigningAlgs             []string
    	ServiceAccountKeyFiles      []string
    	ServiceAccountLookup        bool
    	ServiceAccountIssuers       []string
    	APIAudiences                authenticator.Audiences
    	WebhookTokenAuthnConfigFile string
    	WebhookTokenAuthnVersion    string
    	WebhookTokenAuthnCacheTTL   time.Duration
    	// WebhookRetryBackoff specifies the backoff parameters for the authentication webhook retry logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "properties": {
              "audiences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top