Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 457 for audiences (0.17 sec)

  1. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x1a
    	}
    	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] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  2. pkg/kubelet/token/token_manager_test.go

    		{
    			name: "hit",
    			trus: []tokenRequestUnit{
    				{
    					name:      "foo-sa",
    					namespace: "foo-ns",
    					tr: &authenticationv1.TokenRequest{
    						Spec: authenticationv1.TokenRequestSpec{
    							Audiences:         []string{"foo1", "foo2"},
    							ExpirationSeconds: getInt64Point(2000),
    							BoundObjectRef: &authenticationv1.BoundObjectReference{
    								Kind: "pod",
    								Name: "foo-pod",
    								UID:  "foo-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

          - key: "request.auth.principal"
            values: ["requestPrincipals"]
            notValues: ["not-requestPrincipals"]
          - key: "request.auth.audiences"
            values: ["audiences"]
            notValues: ["not-audiences"]
          - key: "request.auth.presenter"
            values: ["presenter"]
            notValues: ["not-presenter"]
          - key: "request.auth.claims[iss]"
            values: ["iss"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    			TokenFile: "/testTokenFile",
    		},
    		TokenSuccessCacheTTL: 10 * time.Second,
    		TokenFailureCacheTTL: 0,
    	}
    
    	expectConfig := kubeauthenticator.Config{
    		APIAudiences:            authenticator.Audiences{"http://foo.bar.com"},
    		Anonymous:               false,
    		BootstrapToken:          false,
    		ClientCAContentProvider: nil, // this is nil because you can't compare functions
    		TokenAuthFile:           "/testTokenFile",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/testdata/HEAD/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 May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top