Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 102 for azureDisk (0.16 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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 (0)
Back to top