Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bootstrapClientConfig (0.22 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	return writeKubeconfigFromBootstrapping(bootstrapClientConfig, kubeconfigPath, store.CurrentPath())
    }
    
    func writeKubeconfigFromBootstrapping(bootstrapClientConfig *restclient.Config, kubeconfigPath, pemPath string) error {
    	// Get the CA data from the bootstrap client config.
    	caFile, caData := bootstrapClientConfig.CAFile, []byte{}
    	if len(caFile) == 0 {
    		caData = bootstrapClientConfig.CAData
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. cmd/kubemark/app/hollow_node.go

    	}
    	config.ContentType = c.ContentType
    	config.QPS = c.QPS
    	config.Burst = c.Burst
    	return config, nil
    }
    
    func (c *hollowNodeConfig) bootstrapClientConfig() error {
    	if c.BootstrapKubeconfigPath != "" {
    		return bootstrap.LoadClientCert(context.TODO(), c.KubeconfigPath, c.BootstrapKubeconfigPath, c.CertDirectory, types.NodeName(c.NodeName))
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top