Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for volumeLifecycleMode (0.47 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    				t.Error("volume data file unexpected nodeName:", data[volDataKey.nodeName])
    			}
    			if data[volDataKey.volumeLifecycleMode] != string(csiMounter.volumeLifecycleMode) {
    				t.Error("volume data file unexpected volumeLifecycleMode:", data[volDataKey.volumeLifecycleMode])
    			}
    
    		})
    	}
    }
    
    func TestMounterSetUpSimple(t *testing.T) {
    	fakeClient := fakeclient.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    		modify: func(new *storage.CSIDriver) {
    			new.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{
    				storage.VolumeLifecycleEphemeral,
    			}
    		},
    	}, {
    		name: "VolumeLifecycleEphemeral removed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{
    				storage.VolumeLifecyclePersistent,
    			}
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top