Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ScaleIOVolumeSource (0.22 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ScaleIOVolumeSource)(nil), (*core.ScaleIOVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ScaleIOVolumeSource_To_core_ScaleIOVolumeSource(a.(*v1.ScaleIOVolumeSource), b.(*core.ScaleIOVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 10;
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    message ScaleIOVolumeSource {
      // gateway is the host address of the ScaleIO API Gateway.
      optional string gateway = 1;
    
      // system is the name of the storage system as configured in ScaleIO.
    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

    	Kind *AzureDataDiskKind
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    type ScaleIOVolumeSource struct {
    	// The host address of the ScaleIO API Gateway.
    	Gateway string
    	// The name of the storage system as configured in ScaleIO.
    	System string
    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/generated.proto

      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 10;
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    message ScaleIOVolumeSource {
      // gateway is the host address of the ScaleIO API Gateway.
      optional string gateway = 1;
    
      // system is the name of the storage system as configured in ScaleIO.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// the ReadOnly setting in VolumeMounts.
    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    type ScaleIOVolumeSource struct {
    	// gateway is the host address of the ScaleIO API Gateway.
    	Gateway string `json:"gateway" protobuf:"bytes,1,opt,name=gateway"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (ScaleIOPersistentVolumeSource) SwaggerDoc() map[string]string {
    	return map_ScaleIOPersistentVolumeSource
    }
    
    var map_ScaleIOVolumeSource = map[string]string{
    	"":                 "ScaleIOVolumeSource represents a persistent ScaleIO volume",
    	"gateway":          "gateway is the host address of the ScaleIO API Gateway.",
    	"system":           "system is the name of the storage system as configured in ScaleIO.",
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ScaleIOVolumeSource": {
            "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
            "properties": {
              "fsType": {
    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. pkg/apis/core/validation/validation.go

    	if len(pwx.VolumeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumeID"), ""))
    	}
    	return allErrs
    }
    
    func validateScaleIOVolumeSource(sio *core.ScaleIOVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if sio.Gateway == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("gateway"), ""))
    	}
    	if sio.System == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top