Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for KubeConfigPath (0.22 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string
    }
    
    // GetControlPlaneImageRepository returns name of image repository
    // for control plane images (API,Controller Manager,Scheduler and Proxy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    			Discovery: kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token: "abcdef.1234567890123456@foobar",
    				},
    				File: &kubeadmapi.FileDiscovery{
    					KubeConfigPath: "foo",
    				},
    			},
    		}, false},
    		{&kubeadmapi.JoinConfiguration{ // Pass without JoinControlPlane
    			CACertPath: "/some/cert.crt",
    			Discovery: kubeadmapi.Discovery{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top