Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for BoundObjectReference (0.34 sec)

  1. staging/src/k8s.io/api/authentication/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1";
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    message BoundObjectReference {
      // Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
      // +optional
      optional string kind = 1;
    
      // API version of the referent.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    func (m *BoundObjectReference) Reset()      { *m = BoundObjectReference{} }
    func (*BoundObjectReference) ProtoMessage() {}
    func (*BoundObjectReference) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{0}
    }
    func (m *BoundObjectReference) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *BoundObjectReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authentication/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1";
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    message BoundObjectReference {
      // Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
      // +optional
      optional string kind = 1;
    
      // API version of the referent.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/volume/csi/csi_mounter.go

    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         audiences,
    				ExpirationSeconds: tokenRequest.ExpirationSeconds,
    				BoundObjectRef: &authenticationv1.BoundObjectReference{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       c.pod.Name,
    					UID:        c.pod.UID,
    				},
    			},
    		})
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.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: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. 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)
Back to top