Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for initConfiguration (0.45 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubeconfig
    
    /*
    
    	PHASE: KUBECONFIG
    
    	INPUTS:
    		From InitConfiguration
    			The API Server endpoint (AdvertiseAddress + BindPort) is required so the kubeconfig file knows where to find the control-plane
    			The KubernetesDir path is required for knowing where to put the kubeconfig files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 13 15:13:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    		# upload the configuration of your cluster
    		kubeadm init phase upload-config --config=myConfig.yaml
    		`)
    
    	uploadKubeletConfigLongDesc = cmdutil.LongDesc(`
    		Upload the kubelet configuration extracted from the kubeadm InitConfiguration object
    		to a kubelet-config ConfigMap in the cluster
    		`)
    
    	uploadKubeletConfigExample = cmdutil.Examples(`
    		# Upload the kubelet configuration from the kubeadm Config file to a ConfigMap in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/upgrade/node/data.go

    // The "nodeData" type from "cmd/upgrade/node.go" must satisfy this interface.
    type Data interface {
    	EtcdUpgrade() bool
    	RenewCerts() bool
    	DryRun() bool
    	Cfg() *kubeadmapi.UpgradeConfiguration
    	InitCfg() *kubeadmapi.InitConfiguration
    	IsControlPlaneNode() bool
    	Client() clientset.Interface
    	IgnorePreflightErrors() sets.Set[string]
    	PatchesDir() string
    	KubeConfigPath() string
    	OutputWriter() io.Writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/register.go

    func Resource(resource string) schema.GroupResource {
    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&InitConfiguration{},
    		&ClusterConfiguration{},
    		&JoinConfiguration{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 17:11:43 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/data_test.go

    func (t *testInitData) SetCertificateKey(key string)                         {}
    func (t *testInitData) SkipCertificateKeyPrint() bool                        { return false }
    func (t *testInitData) Cfg() *kubeadmapi.InitConfiguration                   { return nil }
    func (t *testInitData) DryRun() bool                                         { return false }
    func (t *testInitData) SkipTokenPrint() bool                                 { return false }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    	kubeletphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubelet"
    )
    
    var (
    	kubeletStartPhaseExample = cmdutil.Examples(`
    		# Writes a dynamic environment file with kubelet flags from a InitConfiguration file.
    		kubeadm init phase kubelet-start --config config.yaml
    		`)
    )
    
    // NewKubeletStartPhase creates a kubeadm workflow phase that start kubelet on a node.
    func NewKubeletStartPhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/data.go

    type InitData interface {
    	UploadCerts() bool
    	CertificateKey() string
    	SetCertificateKey(key string)
    	SkipCertificateKeyPrint() bool
    	Cfg() *kubeadmapi.InitConfiguration
    	DryRun() bool
    	SkipTokenPrint() bool
    	IgnorePreflightErrors() sets.Set[string]
    	CertificateWriteDir() string
    	CertificateDir() string
    	KubeConfigDir() string
    	KubeConfigPath() string
    	ManifestDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/data_test.go

    func (t *testData) InputReader() io.Reader                   { return nil }
    func (t *testData) IgnorePreflightErrors() sets.Set[string]  { return nil }
    func (t *testData) Cfg() *kubeadmapi.InitConfiguration       { return nil }
    func (t *testData) DryRun() bool                             { return false }
    func (t *testData) Client() clientset.Interface              { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 09:03:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/data_test.go

    func (j *testJoinData) Cfg() *kubeadmapi.JoinConfiguration              { return nil }
    func (j *testJoinData) TLSBootstrapCfg() (*clientcmdapi.Config, error)  { return nil, nil }
    func (j *testJoinData) InitCfg() (*kubeadmapi.InitConfiguration, error) { return nil, nil }
    func (j *testJoinData) Client() (clientset.Interface, error)            { return nil, nil }
    func (j *testJoinData) IgnorePreflightErrors() sets.Set[string]         { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Convert documentMap to internal UpgradeConfiguration, InitConfiguration and ClusterConfiguration from config file will be ignored.
    	// Upgrade should respect the cluster configuration from the existing cluster, re-configure the cluster with a InitConfiguration and
    	// ClusterConfiguration from the config file is not allowed for upgrade.
    	if isKubeadmConfigPresent(docmap) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top