Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		Name:    "cleanup-node",
    		Aliases: []string{"cleanupnode"},
    		Short:   "Run cleanup node.",
    		Run:     runCleanupNode,
    		InheritFlags: []string{
    			options.CertificatesDir,
    			options.NodeCRISocket,
    			options.CleanupTmpDir,
    			options.DryRun,
    		},
    	}
    }
    
    func runCleanupNode(c workflow.RunData) error {
    	dirsToClean := []string{filepath.Join(kubeadmconstants.KubernetesDir, kubeadmconstants.ManifestsSubDirName)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K 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/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_ResetConfiguration_To_kubeadm_ResetConfiguration(in *ResetConfiguration, out *kubeadm.ResetConfiguration, s conversion.Scope) error {
    	out.CleanupTmpDir = in.CleanupTmpDir
    	out.CertificatesDir = in.CertificatesDir
    	out.CRISocket = in.CRISocket
    	out.DryRun = in.DryRun
    	out.Force = in.Force
    	out.IgnorePreflightErrors = *(*[]string)(unsafe.Pointer(&in.IgnorePreflightErrors))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. 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)
Back to top