Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BackupManifestPath (0.35 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	// If a rollback is needed, these manifests will be put back to where they where initially
    	backupManifestPath := pathMgr.BackupManifestPath(component)
    
    	// Store the backup path in the recover list. If something goes wrong now, this component will be rolled back.
    	recoverManifests[component] = backupManifestPath
    
    	// Skip upgrade if current and new manifests are equal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	return constants.GetStaticPodFilepath(component, spm.tempManifestDir)
    }
    func (spm *fakeStaticPodPathManager) TempManifestDir() string {
    	return spm.tempManifestDir
    }
    
    func (spm *fakeStaticPodPathManager) BackupManifestPath(component string) string {
    	return constants.GetStaticPodFilepath(component, spm.backupManifestDir)
    }
    func (spm *fakeStaticPodPathManager) BackupManifestDir() string {
    	return spm.backupManifestDir
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top