Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for gcePersistentDisk (0.75 sec)

  1. pkg/controller/volume/attachdetach/util/util_test.go

    					Name:      "kube-apiserver",
    					Namespace: "default",
    				},
    				Spec: v1.PodSpec{
    					Volumes: []v1.Volume{
    						{
    							Name: migratedVolume,
    							VolumeSource: v1.VolumeSource{
    								GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    									PDName:    "test-disk",
    									FSType:    "ext4",
    									Partition: 0,
    									ReadOnly:  false,
    								},
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
          flocker:
            datasetName: datasetNameValue
            datasetUUID: datasetUUIDValue
          gcePersistentDisk:
            fsType: fsTypeValue
            partition: 3
            pdName: pdNameValue
            readOnly: true
          glusterfs:
            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
          flocker:
            datasetName: datasetNameValue
            datasetUUID: datasetUUIDValue
          gcePersistentDisk:
            fsType: fsTypeValue
            partition: 3
            pdName: pdNameValue
            readOnly: true
          glusterfs:
            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
          flocker:
            datasetName: datasetNameValue
            datasetUUID: datasetUUIDValue
          gcePersistentDisk:
            fsType: fsTypeValue
            partition: 3
            pdName: pdNameValue
            readOnly: true
          glusterfs:
            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

          optionsKey: optionsValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
      flocker:
        datasetName: datasetNameValue
        datasetUUID: datasetUUIDValue
      gcePersistentDisk:
        fsType: fsTypeValue
        partition: 3
        pdName: pdNameValue
        readOnly: true
      glusterfs:
        endpoints: endpointsValue
        endpointsNamespace: endpointsNamespaceValue
        path: pathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "capacity": {
          "capacityKey": "0"
        },
        "gcePersistentDisk": {
          "pdName": "pdNameValue",
          "fsType": "fsTypeValue",
          "partition": 3,
          "readOnly": true
        },
        "awsElasticBlockStore": {
          "volumeID": "volumeIDValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

          optionsKey: optionsValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
      flocker:
        datasetName: datasetNameValue
        datasetUUID: datasetUUIDValue
      gcePersistentDisk:
        fsType: fsTypeValue
        partition: 3
        pdName: pdNameValue
        readOnly: true
      glusterfs:
        endpoints: endpointsValue
        endpointsNamespace: endpointsNamespaceValue
        path: pathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	FilterVolume: func(vol *v1.Volume) (string, bool) {
    		if vol.GCEPersistentDisk != nil {
    			return vol.GCEPersistentDisk.PDName, true
    		}
    		return "", false
    	},
    
    	FilterPersistentVolume: func(pv *v1.PersistentVolume) (string, bool) {
    		if pv.Spec.GCEPersistentDisk != nil {
    			return pv.Spec.GCEPersistentDisk.PDName, true
    		}
    		return "", false
    	},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top