Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BoundObjectReference (0.16 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)
Back to top