Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for gcepd (0.15 sec)

  1. pkg/controller/volume/persistentvolume/index.go

    	// can have more.  For example, a user asks for ReadWriteOnce but a GCEPD
    	// is available, which is ReadWriteOnce+ReadOnlyMany.
    	//
    	// Searches are performed against a set of access modes, so we can attempt
    	// not only the exact matching modes but also potential matches (the GCEPD
    	// example above).
    	allPossibleModes := pvIndex.allPossibleMatchingAccessModes(claim.Spec.AccessModes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_metrics_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.csiClient = &csiDriverClient{
    			driverName: "com.google.gcepd",
    			nodeV1ClientCreator: func(addr csiAddr, m *MetricsManager) (csipbv1.NodeClient, io.Closer, error) {
    				nodeClient := fake.NewNodeClientWithVolumeStats(true /* VolumeStatsCapable */)
    				fakeCloser := fake.NewCloser(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pkg/api/persistentvolume/util_test.go

    func specWithVACName(vacName *string) *api.PersistentVolumeSpec {
    	pvSpec := &api.PersistentVolumeSpec{
    		PersistentVolumeSource: api.PersistentVolumeSource{
    			CSI: &api.CSIPersistentVolumeSource{
    				Driver:       "com.google.gcepd",
    				VolumeHandle: "foobar",
    			},
    		},
    	}
    
    	if vacName != nil {
    		pvSpec.VolumeAttributesClassName = vacName
    	}
    	return pvSpec
    }
    
    func TestWarnings(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/core/validation/validation_test.go

    		}, {
    			name:     "driver name: invalid separators",
    			csi:      &core.CSIVolumeSource{Driver: "com/google/storage/csi~gcepd"},
    			errtype:  field.ErrorTypeInvalid,
    			errfield: "driver",
    		}, {
    			name: "valid nodePublishSecretRef",
    			csi:  &core.CSIVolumeSource{Driver: "com.google.gcepd", NodePublishSecretRef: &core.LocalObjectReference{Name: "foobar"}},
    		}, {
    			name:     "nodePublishSecretRef: invalid name missing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          // don't let the entries get GCed
          List<Entry<Object, Object>> warmed = warmUp(cache);
          assertEquals(WARMUP_SIZE, cache.size());
          assertMapSize(cache.asMap(), WARMUP_SIZE);
          checkValidState(cache);
        }
      }
    
      public void testContainsKey_found() {
        for (LoadingCache<Object, Object> cache : caches()) {
          // don't let the entries get GCed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			VolumeName: "volume-name",
    			VolumeMode: &mode,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase:    v1.ClaimBound,
    			Capacity: gcepv.Spec.Capacity,
    		},
    	}
    
    	volumeSpec := &volume.Spec{
    		PersistentVolume: gcepv,
    	}
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: string(nodeName),
    		},
    		Status: v1.NodeStatus{
    			VolumesAttached: []v1.AttachedVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.21.md

    - Readjust `kubelet_containers_per_pod_count` buckets to only show metrics greater than 1. ([#98169](https://github.com/kubernetes/kubernetes/pull/98169), [@wawa0210](https://github.com/wawa0210))
    - Remove CSI topology from migrated in-tree gcepd volume. ([#97823](https://github.com/kubernetes/kubernetes/pull/97823), [@Jiawei0227](https://github.com/Jiawei0227)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - The feature gates `CSIMigrationGCE` is graduated to GA and were unconditionally enabled have been removed in `v1.25`, and the entire `gcepd` package has been removed. ([#117055](https://github.com/kubernetes/kubernetes/pull/117055), [@cyclinder](https://github.com/cyclinder))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

            return;
          }
    
          /*
           * If we're about to complete the TimeoutFuture, we want to release our reference to it.
           * Otherwise, we'll pin it (and its result) in memory until the timeout task is GCed. (The
           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top