Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SkipCertificateKeyPrint (0.2 sec)

  1. cmd/kubeadm/app/cmd/options/constant.go

    	// CertificateKey flag sets the key used to encrypt and decrypt certificate secrets
    	CertificateKey = "certificate-key"
    
    	// SkipCertificateKeyPrint flag instructs kubeadm to skip printing certificate key used to encrypt certs by 'kubeadm init'.
    	SkipCertificateKeyPrint = "skip-certificate-key-print"
    
    	// ForceReset flag instructs kubeadm to reset the node without prompting for confirmation
    	ForceReset = "force"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    	// otherwise, just print the token
    	if printJoinCommand {
    		skipTokenPrint := false
    		if certificateKey != "" {
    			skipCertificateKeyPrint := false
    			joinCommand, err := cmdutil.GetJoinControlPlaneCommand(kubeConfigFile, internalcfg.BootstrapTokens[0].Token.String(), certificateKey, skipTokenPrint, skipCertificateKeyPrint)
    			if err != nil {
    				return errors.Wrap(err, "failed to get join command")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top