Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for FlexVolumeSource (0.7 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	ReadOnly bool
    	// Optional: Extra driver options if any.
    	// +optional
    	Options map[string]string
    }
    
    // FlexVolumeSource represents a generic volume resource that is
    // provisioned/attached using an exec based plugin.
    type FlexVolumeSource struct {
    	// Driver is the name of the driver to use for this volume.
    	Driver string
    	// Filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    	testcases := map[string]struct {
    		source       *core.FlexVolumeSource
    		expectedErrs map[string]string
    	}{
    		"valid": {
    			source:       &core.FlexVolumeSource{Driver: "foo"},
    			expectedErrs: map[string]string{},
    		},
    		"valid with options": {
    			source:       &core.FlexVolumeSource{Driver: "foo", Options: map[string]string{"foo": "bar"}},
    			expectedErrs: map[string]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.FlexVolumeSource": {
          "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
          "properties": {
            "driver": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, string> options = 5;
    }
    
    // FlexVolume represents a generic volume resource that is
    // provisioned/attached using an exec based plugin.
    message FlexVolumeSource {
      // driver is the name of the driver to use for this volume.
      optional string driver = 1;
    
      // fsType is the filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, string> options = 5;
    }
    
    // FlexVolume represents a generic volume resource that is
    // provisioned/attached using an exec based plugin.
    message FlexVolumeSource {
      // driver is the name of the driver to use for this volume.
      optional string driver = 1;
    
      // fsType is the filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    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. staging/src/k8s.io/api/core/v1/types.go

    	RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,11,opt,name=rbd"`
    	// flexVolume represents a generic volume resource that is
    	// provisioned/attached using an exec based plugin.
    	// +optional
    	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
    	// cinder represents a cinder volume attached and mounted on kubelets host machine.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.FlexVolumeSource": {
            "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
            "properties": {
              "driver": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"options":   "options is Optional: this field holds extra command options if any.",
    }
    
    func (FlexVolumeSource) SwaggerDoc() map[string]string {
    	return map_FlexVolumeSource
    }
    
    var map_FlockerVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if len(cephfs.Monitors) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("monitors"), ""))
    	}
    	return allErrs
    }
    
    func validateFlexVolumeSource(fv *core.FlexVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(fv.Driver) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("driver"), ""))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apps__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.FlexVolumeSource": {
            "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.",
            "properties": {
              "driver": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top