Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newCmdCertsUtility (0.41 sec)

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

    			if rootfsPath != "" {
    				if err := kubeadmutil.Chroot(rootfsPath); err != nil {
    					return err
    				}
    			}
    			return nil
    		},
    	}
    
    	cmds.ResetFlags()
    
    	cmds.AddCommand(newCmdCertsUtility(out))
    	cmds.AddCommand(newCmdCompletion(out, ""))
    	cmds.AddCommand(newCmdConfig(out))
    	cmds.AddCommand(newCmdInit(out, nil))
    	cmds.AddCommand(newCmdJoin(out, nil))
    	cmds.AddCommand(newCmdReset(in, out, nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/certs.go

    	kubeadm certs generate-csr --kubeconfig-dir /tmp/etc-k8s --cert-dir /tmp/etc-k8s/pki
    `)
    )
    
    // newCmdCertsUtility returns main command for certs phase
    func newCmdCertsUtility(out io.Writer) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:     "certs",
    		Aliases: []string{"certificates"},
    		Short:   "Commands related to handling kubernetes certificates",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top