Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for scaleIO (0.25 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume
    message ScaleIOPersistentVolumeSource {
      // 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.
      optional string system = 2;
    
      // secretRef references to the secret for ScaleIO user and other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. 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
    	// SecretRef references to the secret for ScaleIO user and other
    	// sensitive information. If this is not provided, Login operation will fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                 "ScaleIOPersistentVolumeSource 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.",
    	"secretRef":        "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	PortworxVolume *PortworxVolumeSource `json:"portworxVolume,omitempty" protobuf:"bytes,24,opt,name=portworxVolume"`
    	// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.
    	// +optional
    	ScaleIO *ScaleIOVolumeSource `json:"scaleIO,omitempty" protobuf:"bytes,25,opt,name=scaleIO"`
    	// storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume
    message ScaleIOPersistentVolumeSource {
      // 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.
      optional string system = 2;
    
      // secretRef references to the secret for ScaleIO user and other
    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. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.ScaleIO != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("scaleIO"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateScaleIOVolumeSource(source.ScaleIO, fldPath.Child("scaleIO"))...)
    		}
    	}
    	if source.CSI != nil {
    		if numVolumes > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "scaleIO": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOPersistentVolumeSource"
                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "storageClassName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "scaleIO": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource"
                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "secret": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PhotonPersistentDisk = (*core.PhotonPersistentDiskVolumeSource)(unsafe.Pointer(in.PhotonPersistentDisk))
    	out.PortworxVolume = (*core.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
    	out.ScaleIO = (*core.ScaleIOPersistentVolumeSource)(unsafe.Pointer(in.ScaleIO))
    	out.Local = (*core.LocalVolumeSource)(unsafe.Pointer(in.Local))
    	out.StorageOS = (*core.StorageOSPersistentVolumeSource)(unsafe.Pointer(in.StorageOS))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.9.md

        * Signing Request API.
    * Adding German translation for kubectl ([#51867](https://github.com/kubernetes/kubernetes/pull/51867), [@Steffen911](https://github.com/Steffen911))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top