Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 996 for volumeID (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.yaml

            nodeTaintsPolicy: nodeTaintsPolicyValue
            topologyKey: topologyKeyValue
            whenUnsatisfiable: whenUnsatisfiableValue
          volumes:
          - awsElasticBlockStore:
              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

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

                      "fsType": "fsTypeValue",
                      "partition": 3,
                      "readOnly": true
                    },
                    "awsElasticBlockStore": {
                      "volumeID": "volumeIDValue",
                      "fsType": "fsTypeValue",
                      "partition": 3,
                      "readOnly": true
                    },
                    "gitRepo": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.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)
  5. pkg/volume/util/hostutil/hostutil_linux.go

    	}
    	for _, ref := range refs {
    		if strings.HasPrefix(ref, pluginMountDir) {
    			volumeID, err := filepath.Rel(pluginMountDir, ref)
    			if err != nil {
    				klog.Errorf("Failed to get volume id from mount %s - %v", mountPath, err)
    				return "", err
    			}
    			return volumeID, nil
    		}
    	}
    
    	return path.Base(mountPath), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	}
    }
    
    func TestAWSDiskConflicts(t *testing.T) {
    	volState := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{
    				VolumeID: "foo",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{
    				VolumeID: "bar",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. pkg/controller/volume/expand/expand_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    	controllervolumetesting "k8s.io/kubernetes/pkg/controller/volume/attachdetach/testing"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    func TestSyncHandler(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/binder_test.go

    			initialClaims:   newClaimArray("claim3-3", "uid3-3", "10Gi", "volume3-3", v1.ClaimPending, nil, volume.AnnBoundByController, volume.AnnBindCompleted),
    			expectedClaims:  newClaimArray("claim3-3", "uid3-3", "10Gi", "volume3-3", v1.ClaimBound, nil, volume.AnnBoundByController, volume.AnnBindCompleted),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// volume is a string that references an already created Quobyte volume by name.
    	Volume string `json:"volume" protobuf:"bytes,2,opt,name=volume"`
    
    	// readOnly here will force the Quobyte volume to be mounted with read-only permissions.
    	// Defaults to false.
    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    
    	// user to map volume access to
    	// Defaults to serivceaccount user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. src/path/filepath/path_windows_test.go

    // is per volume or global setting:
    //
    //	0 - Enable 8dot3 name creation on all volumes on the system
    //	1 - Disable 8dot3 name creation on all volumes on the system
    //	2 - Set 8dot3 name creation on a per volume basis
    //	3 - Disable 8dot3 name creation on all volumes except the system volume
    //
    // If global flag is set to 2, then per-volume flag needs to be examined:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top