Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RuntimeReady (0.11 sec)

  1. pkg/kubelet/kuberuntime/instrumented_services_test.go

    		Conditions: []*runtimeapi.RuntimeCondition{
    			{Type: runtimeapi.RuntimeReady, Status: false},
    			{Type: runtimeapi.NetworkReady, Status: true},
    		},
    	}
    	irs := newInstrumentedRuntimeService(fakeRuntime)
    	actural, err := irs.Status(ctx, false)
    	assert.NoError(t, err)
    	expected := &runtimeapi.RuntimeStatus{
    		Conditions: []*runtimeapi.RuntimeCondition{
    			{Type: runtimeapi.RuntimeReady, Status: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime.go

    	if err != nil {
    		return errors.Wrap(err, "container runtime is not running")
    	}
    
    	for _, condition := range res.GetStatus().GetConditions() {
    		if condition.GetType() == runtimeapi.RuntimeReady && // NetworkReady will not be tested on purpose
    			!condition.GetStatus() {
    			return errors.Errorf(
    				"container runtime condition %q is not true. reason: %s, message: %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top