Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for NodePublishSecretRef (0.68 sec)

  1. pkg/apis/core/validation/validation.go

    	if csi.NodePublishSecretRef != nil {
    		if len(csi.NodePublishSecretRef.Name) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("nodePublishSecretRef", "name"), ""))
    		} else {
    			for _, msg := range ValidateSecretName(csi.NodePublishSecretRef.Name, false) {
    				allErrs = append(allErrs, field.Invalid(fldPath.Child("name"), csi.NodePublishSecretRef.Name, msg))
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.NodeStageSecretRef = (*core.SecretReference)(unsafe.Pointer(in.NodeStageSecretRef))
    	out.NodePublishSecretRef = (*core.SecretReference)(unsafe.Pointer(in.NodePublishSecretRef))
    	out.ControllerExpandSecretRef = (*core.SecretReference)(unsafe.Pointer(in.ControllerExpandSecretRef))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// secret object contains more than one secret, all secrets are passed.
    	// +optional
    	NodePublishSecretRef *SecretReference `json:"nodePublishSecretRef,omitempty" protobuf:"bytes,8,opt,name=nodePublishSecretRef"`
    
    	// controllerExpandSecretRef is a reference to the secret object containing
    	// sensitive information to pass to the CSI driver to complete the CSI
    	// ControllerExpandVolume call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // secret object contains more than one secret, all secrets are passed.
      // +optional
      optional SecretReference nodeStageSecretRef = 7;
    
      // nodePublishSecretRef is a reference to the secret object containing
      // sensitive information to pass to the CSI driver to complete the CSI
      // NodePublishVolume and NodeUnpublishVolume calls.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// This field is optional, and may be empty if no secret is required. If the
    	// secret object contains more than one secret, all secrets are passed.
    	// +optional
    	NodeStageSecretRef *SecretReference
    
    	// NodePublishSecretRef is a reference to the secret object containing
    	// sensitive information to pass to the CSI driver to complete the CSI
    	// NodePublishVolume and NodeUnpublishVolume calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"nodePublishSecretRef":       "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // secret object contains more than one secret, all secrets are passed.
      // +optional
      optional SecretReference nodeStageSecretRef = 7;
    
      // nodePublishSecretRef is a reference to the secret object containing
      // sensitive information to pass to the CSI driver to complete the CSI
      // NodePublishVolume and NodeUnpublishVolume calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "nodePublishSecretRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretReference"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "nodePublishSecretRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top