Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 186 for azureDisk (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        whenUnsatisfiable: whenUnsatisfiableValue
      volumes:
      - awsElasticBlockStore:
          fsType: fsTypeValue
          partition: 3
          readOnly: true
          volumeID: volumeIDValue
        azureDisk:
          cachingMode: cachingModeValue
          diskName: diskNameValue
          diskURI: diskURIValue
          fsType: fsTypeValue
          kind: kindValue
          readOnly: true
        azureFile:
          readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

              volumes:
              - awsElasticBlockStore:
                  fsType: fsTypeValue
                  partition: 3
                  readOnly: true
                  volumeID: volumeIDValue
                azureDisk:
                  cachingMode: cachingModeValue
                  diskName: diskNameValue
                  diskURI: diskURIValue
                  fsType: fsTypeValue
                  kind: kindValue
                  readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

              volumes:
              - awsElasticBlockStore:
                  fsType: fsTypeValue
                  partition: 3
                  readOnly: true
                  volumeID: volumeIDValue
                azureDisk:
                  cachingMode: cachingModeValue
                  diskName: diskNameValue
                  diskURI: diskURIValue
                  fsType: fsTypeValue
                  kind: kindValue
                  readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

          volumes:
          - awsElasticBlockStore:
              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

          volumes:
          - awsElasticBlockStore:
              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.VsphereVolume != nil {
    		in, out := &in.VsphereVolume, &out.VsphereVolume
    		*out = new(VsphereVirtualDiskVolumeSource)
    		**out = **in
    	}
    	if in.AzureDisk != nil {
    		in, out := &in.AzureDisk, &out.AzureDisk
    		*out = new(AzureDiskVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.Quobyte != nil {
    		in, out := &in.Quobyte, &out.Quobyte
    		*out = new(QuobyteVolumeSource)
    		**out = **in
    	}
    	if in.AzureDisk != nil {
    		in, out := &in.AzureDisk, &out.AzureDisk
    		*out = new(AzureDiskVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. pkg/volume/util/util.go

    		return true
    	}
    
    	if volumeSpec.Volume != nil {
    		// Check for volume types which are known to fail slow or cause trouble when trying to multi-attach
    		if volumeSpec.Volume.AzureDisk != nil ||
    			volumeSpec.Volume.Cinder != nil {
    			return false
    		}
    	}
    
    	// Only if this volume is a persistent volume, we have reliable information on whether it's allowed or not to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.AzureDisk != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("azureDisk"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateAzureDisk(source.AzureDisk, fldPath.Child("azureDisk"))...)
    		}
    	}
    	if source.StorageOS != 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 (1)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Quobyte *QuobyteVolumeSource `json:"quobyte,omitempty" protobuf:"bytes,21,opt,name=quobyte"`
    	// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.
    	// +optional
    	AzureDisk *AzureDiskVolumeSource `json:"azureDisk,omitempty" protobuf:"bytes,22,opt,name=azureDisk"`
    	// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine
    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