Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BoundObjectReference (0.44 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. 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)
  4. 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)
  5. 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