Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for CreateVolume (0.29 sec)

  1. CHANGELOG/CHANGELOG-1.10.md

    * K8s now supports rbd-nbd for Ceph rbd volume mounts. ([#58916](https://github.com/kubernetes/kubernetes/pull/58916), [@ianchakeres](https://github.com/ianchakeres))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // driver is the name of the driver to use for this volume.
      // Required.
      optional string driver = 1;
    
      // volumeHandle is the unique volume name returned by the CSI volume
      // plugin’s CreateVolume to refer to the volume on all subsequent calls.
      // Required.
      optional string volumeHandle = 2;
    
      // readOnly value to pass to ControllerPublishVolumeRequest.
      // Defaults to false (read/write).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// Driver is the name of the driver to use for this volume.
    	// Required.
    	Driver string
    
    	// VolumeHandle is the unique volume name returned by the CSI volume
    	// plugin’s CreateVolume to refer to the volume on all subsequent calls.
    	// Required.
    	VolumeHandle string
    
    	// Optional: The value to pass to ControllerPublishVolumeRequest.
    	// Defaults to false (read/write).
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"driver":                     "driver is the name of the driver to use for this volume. Required.",
    	"volumeHandle":               "volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.",
    	"readOnly":                   "readOnly value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // driver is the name of the driver to use for this volume.
      // Required.
      optional string driver = 1;
    
      // volumeHandle is the unique volume name returned by the CSI volume
      // plugin’s CreateVolume to refer to the volume on all subsequent calls.
      // Required.
      optional string volumeHandle = 2;
    
      // readOnly value to pass to ControllerPublishVolumeRequest.
      // Defaults to false (read/write).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    ### Other notable changes
    
    * Fixes CVE-2017-1002101 - See https://issue.k8s.io/60813 for details ([#61047](https://github.com/kubernetes/kubernetes/pull/61047), [@liggitt](https://github.com/liggitt))
    * fix CreateVolume func: use search mode instead ([#54687](https://github.com/kubernetes/kubernetes/pull/54687), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    * Add prometheus metrics for the PodSecurityPolicy admission controller ([#57346](https://github.com/kubernetes/kubernetes/pull/57346), [@tallclair](https://github.com/tallclair))
    * fix CreateVolume func: use search mode instead ([#54687](https://github.com/kubernetes/kubernetes/pull/54687), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.9.md

    * AWS: Detect EBS volumes mounted via NVME and mount them ([#56607](https://github.com/kubernetes/kubernetes/pull/56607), [@justinsb](https://github.com/justinsb))
    * fix CreateVolume func: use search mode instead ([#54687](https://github.com/kubernetes/kubernetes/pull/54687), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "object"
              },
              "volumeHandle": {
                "default": "",
                "description": "volumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.",
                "type": "string"
              }
            },
            "required": [
              "driver",
              "volumeHandle"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// Required.
    	Driver string `json:"driver" protobuf:"bytes,1,opt,name=driver"`
    
    	// volumeHandle is the unique volume name returned by the CSI volume
    	// plugin’s CreateVolume to refer to the volume on all subsequent calls.
    	// Required.
    	VolumeHandle string `json:"volumeHandle" protobuf:"bytes,2,opt,name=volumeHandle"`
    
    	// readOnly value to pass to ControllerPublishVolumeRequest.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top