Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for BoundObjectReference (0.54 sec)

  1. 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)
  2. 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)
  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. 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)
  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)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

                "RollingUpdate"
              ],
              "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
    - 4.5M bytes
    - Viewed (0)
Back to top