Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestInitDataClientWithNonDefaultKubeconfig (0.3 sec)

  1. cmd/kubeadm/app/cmd/init_test.go

    			t.Errorf("Invalid ignore preflight errors in InitConfiguration. Expected: %v. Actual: %v", sets.List(expected), data.cfg.NodeRegistration.IgnorePreflightErrors)
    		}
    	}
    }
    
    func TestInitDataClientWithNonDefaultKubeconfig(t *testing.T) {
    	ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Method != http.MethodHead {
    			w.WriteHeader(http.StatusMethodNotAllowed)
    		}
    	}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top