Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 209 for audiences (0.19 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	return authenticationv1beta1.TokenReviewStatus{
    		Authenticated: in.Authenticated,
    		User:          v1UserToV1beta1User(in.User),
    		Audiences:     in.Audiences,
    		Error:         in.Error,
    	}
    }
    
    func v1UserToV1beta1User(u authenticationv1.UserInfo) authenticationv1beta1.UserInfo {
    	var extra map[string]authenticationv1beta1.ExtraValue
    	if u.Extra != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/interfaces.go

    // authentication, and information about the authenticated user.
    type Response struct {
    	// Audiences is the set of audiences the authenticator was able to validate
    	// the token against. If the authenticator is not audience aware, this field
    	// will be empty.
    	Audiences Audiences
    	// User is the UserInfo associated with the authentication context.
    	User user.Info
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 00:55:47 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kube/rpc_creds.go

    	tokenNamespace, tokenServiceAccount string, audiences []string, expirationSeconds int64,
    ) (*authenticationv1.TokenRequest, error) {
    	return client.Kube().CoreV1().ServiceAccounts(tokenNamespace).CreateToken(ctx, tokenServiceAccount,
    		&authenticationv1.TokenRequest{
    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         audiences,
    				ExpirationSeconds: &expirationSeconds,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *TokenRequestSpec) DeepCopyInto(out *TokenRequestSpec) {
    	*out = *in
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExpirationSeconds != nil {
    		in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
    		*out = new(int64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenReview.json

      "spec": {
        "token": "tokenValue",
        "audiences": [
          "audiencesValue"
        ]
      },
      "status": {
        "authenticated": true,
        "user": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "audiences": [
          "audiencesValue"
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.json

      "spec": {
        "token": "tokenValue",
        "audiences": [
          "audiencesValue"
        ]
      },
      "status": {
        "authenticated": true,
        "user": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "audiences": [
          "audiencesValue"
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.TokenReview.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      audiences:
      - audiencesValue
      token: tokenValue
    status:
      audiences:
      - audiencesValue
      authenticated: true
      error: errorValue
      user:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.TokenReview.json

      "spec": {
        "token": "tokenValue",
        "audiences": [
          "audiencesValue"
        ]
      },
      "status": {
        "authenticated": true,
        "user": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "audiences": [
          "audiencesValue"
        ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.TokenReview.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      audiences:
      - audiencesValue
      token: tokenValue
    status:
      audiences:
      - audiencesValue
      authenticated: true
      error: errorValue
      user:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pkg/apis/authentication/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *TokenRequestSpec) DeepCopyInto(out *TokenRequestSpec) {
    	*out = *in
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.BoundObjectRef != nil {
    		in, out := &in.BoundObjectRef, &out.BoundObjectRef
    		*out = new(BoundObjectReference)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top