Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for controllerPublishSecretRef (0.31 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.VolumeHandle = in.VolumeHandle
    	out.ReadOnly = in.ReadOnly
    	out.FSType = in.FSType
    	out.VolumeAttributes = *(*map[string]string)(unsafe.Pointer(&in.VolumeAttributes))
    	out.ControllerPublishSecretRef = (*core.SecretReference)(unsafe.Pointer(in.ControllerPublishSecretRef))
    	out.NodeStageSecretRef = (*core.SecretReference)(unsafe.Pointer(in.NodeStageSecretRef))
    	out.NodePublishSecretRef = (*core.SecretReference)(unsafe.Pointer(in.NodePublishSecretRef))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// secret object contains more than one secret, all secrets are passed.
    	// +optional
    	ControllerPublishSecretRef *SecretReference `json:"controllerPublishSecretRef,omitempty" protobuf:"bytes,6,opt,name=controllerPublishSecretRef"`
    
    	// nodeStageSecretRef is a reference to the secret object containing sensitive
    	// information to pass to the CSI driver to complete the CSI NodeStageVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	if len(csi.VolumeHandle) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumeHandle"), ""))
    	}
    	if csi.ControllerPublishSecretRef != nil {
    		allErrs = append(allErrs, validatePVSecretReference(csi.ControllerPublishSecretRef, fldPath.Child("controllerPublishSecretRef"))...)
    	}
    	if csi.ControllerExpandSecretRef != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Ex. "ext4", "xfs", "ntfs".
      // +optional
      optional string fsType = 4;
    
      // volumeAttributes of the volume to publish.
      // +optional
      map<string, string> volumeAttributes = 5;
    
      // controllerPublishSecretRef is a reference to the secret object containing
      // sensitive information to pass to the CSI driver to complete the CSI
      // ControllerPublishVolume and ControllerUnpublishVolume 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

    	// Ex. "ext4", "xfs", "ntfs".
    	// +optional
    	FSType string
    
    	// Attributes of the volume to publish.
    	// +optional
    	VolumeAttributes map[string]string
    
    	// ControllerPublishSecretRef is a reference to the secret object containing
    	// sensitive information to pass to the CSI driver to complete the CSI
    	// ControllerPublishVolume and ControllerUnpublishVolume 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

    	"volumeAttributes":           "volumeAttributes of the volume to publish.",
    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

      // Ex. "ext4", "xfs", "ntfs".
      // +optional
      optional string fsType = 4;
    
      // volumeAttributes of the volume to publish.
      // +optional
      map<string, string> volumeAttributes = 5;
    
      // controllerPublishSecretRef is a reference to the secret object containing
      // sensitive information to pass to the CSI driver to complete the CSI
      // ControllerPublishVolume and ControllerUnpublishVolume 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

              },
              "controllerPublishSecretRef": {
                "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)
Back to top