Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newCmdConfig (0.21 sec)

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

    					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))
    	cmds.AddCommand(newCmdVersion(out))
    	cmds.AddCommand(newCmdToken(out, err))
    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/config.go

    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    	utilruntime "k8s.io/kubernetes/cmd/kubeadm/app/util/runtime"
    )
    
    // newCmdConfig returns cobra.Command for "kubeadm config" command
    func newCmdConfig(out io.Writer) *cobra.Command {
    	var kubeConfigFile string
    
    	cmd := &cobra.Command{
    		Use:   "config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top