Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for completeSync (0.16 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		return volumetypes.NewOperationContext(nil, nil, false)
    	}
    
    	return volumetypes.GeneratedOperations{
    		OperationName:     "verify_volumes_are_attached_per_node",
    		OperationFunc:     volumesAreAttachedFunc,
    		CompleteFunc:      util.OperationCompleteHook(util.GetFullQualifiedPluginNameForVolume("<n/a>", nil), "verify_volumes_are_attached_per_node"),
    		EventRecorderFunc: nil, // nil because we do not want to generate event on error
    	}, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator_test.go

    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // this method just tests the volume plugin name that's used in CompleteFunc, the same plugin is also used inside the
    // generated func so there is no need to test the plugin name that's used inside generated function
    func TestOperationGenerator_GenerateUnmapVolumeFunc_PluginName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top