Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CleanupTmpDir (0.16 sec)

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

    		forceReset:            cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.ForceReset, resetCfg.Force, opts.externalcfg.Force).(bool),
    		cleanupTmpDir:         cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.CleanupTmpDir, resetCfg.CleanupTmpDir, opts.externalcfg.CleanupTmpDir).(bool),
    	}, nil
    }
    
    // AddResetFlags adds reset flags
    func AddResetFlags(flagSet *flag.FlagSet, resetOptions *resetOptions) {
    	flagSet.StringVar(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type ResetConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// CleanupTmpDir specifies whether the "/etc/kubernetes/tmp" directory should be cleaned during the reset process.
    	// +optional
    	CleanupTmpDir bool `json:"cleanupTmpDir,omitempty"`
    
    	// CertificatesDir specifies the directory where the certificates are stored. If specified, it will be cleaned during the reset process.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/types.go

    	// CertificatesDir specifies the directory where the certificates are stored. If specified, it will be cleaned during the reset process.
    	CertificatesDir string
    
    	// CleanupTmpDir specifies whether the "/etc/kubernetes/tmp" directory should be cleaned during the reset process.
    	CleanupTmpDir bool
    
    	// CRISocket is used to retrieve container runtime info and used for the removal of the containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common_test.go

    		},
    		{
    			name: "ResetConfiguration gets migrated from experimental API",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: ResetConfiguration
    			force: true
    			cleanupTmpDir: true
    			criSocket: unix:///var/run/containerd/containerd.sock
    			certificatesDir: /etc/kubernetes/pki
    			`, gvExperimental)),
    			expectedKinds: []string{
    				constants.ResetConfigurationKind,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top