Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BoundObjectReference (1.36 sec)

  1. staging/src/k8s.io/api/authentication/v1/types.go

    	ExpirationTimestamp metav1.Time `json:"expirationTimestamp" protobuf:"bytes,2,opt,name=expirationTimestamp"`
    }
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    type BoundObjectReference struct {
    	// Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
    	// +optional
    	Kind string `json:"kind,omitempty" protobuf:"bytes,1,opt,name=kind"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/volume/projected/projected.go

    				Spec: authenticationv1.TokenRequestSpec{
    					Audiences:         auds,
    					ExpirationSeconds: tp.ExpirationSeconds,
    					BoundObjectRef: &authenticationv1.BoundObjectReference{
    						APIVersion: "v1",
    						Kind:       "Pod",
    						Name:       s.pod.Name,
    						UID:        s.pod.UID,
    					},
    				},
    			})
    			if err != nil {
    				errlist = append(errlist, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    	tr := &authenticationapi.TokenRequest{
    		Spec: authenticationapi.TokenRequestSpec{
    			Audiences: []string{"foo"},
    		},
    	}
    	if podname != "" {
    		tr.Spec.BoundObjectRef = &authenticationapi.BoundObjectReference{
    			Kind:       "Pod",
    			APIVersion: "v1",
    			Name:       podname,
    			UID:        poduid,
    		}
    	}
    	return tr
    }
    
    func setAllLabels(node *api.Node, value string) *api.Node {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/api__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.authentication.v1.BoundObjectReference": {
            "description": "BoundObjectReference is a reference to an object that a token is bound to.",
            "properties": {
              "apiVersion": {
                "description": "API version of the referent.",
                "type": "string"
              },
              "kind": {
                "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/api/authentication/v1.BoundObjectReference"),
    						},
    					},
    				},
    				Required: []string{"audiences"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/authentication/v1.BoundObjectReference"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.authentication.v1.BoundObjectReference": {
          "description": "BoundObjectReference is a reference to an object that a token is bound to.",
          "properties": {
            "apiVersion": {
              "description": "API version of the referent.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top