Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for gcePersistentDisk (0.26 sec)

  1. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("5G"),
    			},
    			PersistentVolumeSource: v1.PersistentVolumeSource{
    				// Note that as GCE CSI Migration is completed, this is handled by the PD CSI plugin.
    				GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    			},
    			AccessModes: []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce, v1.ReadOnlyMany},
    			// this one we're pretending is already bound
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    )
    
    func TestGCEDiskConflicts(t *testing.T) {
    	volState := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "foo",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "bar",
    			},
    		},
    	}
    	volWithNoRestriction := v1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes_test.go

    				},
    			},
    		},
    		Volumes: []v1.Volume{
    			{
    				Name: "vol1",
    				VolumeSource: v1.VolumeSource{
    					GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    						PDName: "fake-device1",
    					},
    				},
    			},
    			{
    				Name: "vol2",
    				VolumeSource: v1.VolumeSource{
    					GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    						PDName: "fake-device2",
    					},
    				},
    			},
    		},
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    )
    
    var (
    	ErrorWatchTimeout = errors.New("watch event timeout")
    	// Create pod spec to test against
    	podVolumes = []k8sv1.Volume{
    		{
    			Name: vol0,
    			VolumeSource: k8sv1.VolumeSource{
    				GCEPersistentDisk: &k8sv1.GCEPersistentDiskVolumeSource{
    					PDName: "fake-device1",
    				},
    			},
    		},
    		{
    			Name: vol1,
    			VolumeSource: k8sv1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation_test.go

    	}
    	validPodSpecVolume := api.PodSpec{
    		Volumes:       []api.Volume{{Name: "gcepd", VolumeSource: api.VolumeSource{GCEPersistentDisk: &api.GCEPersistentDiskVolumeSource{PDName: "my-PD", FSType: "ext4", Partition: 1, ReadOnly: false}}}},
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator_test.go

    	testcases := []testcase{
    		{
    			name:       "gce pd plugin: csi migration disabled",
    			pluginName: "fake-plugin",
    			pvSpec: v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    				}},
    			probVolumePlugins: volumetesting.ProbeVolumePlugins(volume.VolumeConfig{}),
    		},
    	}
    
    	for _, tc := range testcases {
    		expectedPluginName := tc.pluginName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                  "type": "typeValue"
                },
                "emptyDir": {
                  "medium": "mediumValue",
                  "sizeLimit": "0"
                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                  "type": "typeValue"
                },
                "emptyDir": {
                  "medium": "mediumValue",
                  "sizeLimit": "0"
                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

              readOnly: true
              secretRef:
                name: nameValue
            flocker:
              datasetName: datasetNameValue
              datasetUUID: datasetUUIDValue
            gcePersistentDisk:
              fsType: fsTypeValue
              partition: 3
              pdName: pdNameValue
              readOnly: true
            gitRepo:
              directory: directoryValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodTemplate.yaml

            readOnly: true
            secretRef:
              name: nameValue
          flocker:
            datasetName: datasetNameValue
            datasetUUID: datasetUUIDValue
          gcePersistentDisk:
            fsType: fsTypeValue
            partition: 3
            pdName: pdNameValue
            readOnly: true
          gitRepo:
            directory: directoryValue
            repository: repositoryValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top