mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Add a new feature gate NewVolumeManagerReconstruction and add the new volume reconstruction done in 1.26 under that feature gate.
70 lines
2.3 KiB
Go
70 lines
2.3 KiB
Go
/*
|
|
Copyright 2022 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package reconciler
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
// TODO: move to reconciler.go and remove old code there when NewVolumeManagerReconstruction is GA
|
|
|
|
// TODO: Replace Run() when NewVolumeManagerReconstruction is GA
|
|
func (rc *reconciler) runNew(stopCh <-chan struct{}) {
|
|
rc.reconstructVolumes()
|
|
klog.InfoS("Reconciler: start to sync state")
|
|
wait.Until(rc.reconcileNew, rc.loopSleepDuration, stopCh)
|
|
}
|
|
|
|
func (rc *reconciler) reconcileNew() {
|
|
readyToUnmount := rc.readyToUnmount()
|
|
if readyToUnmount {
|
|
// Unmounts are triggered before mounts so that a volume that was
|
|
// referenced by a pod that was deleted and is now referenced by another
|
|
// pod is unmounted from the first pod before being mounted to the new
|
|
// pod.
|
|
rc.unmountVolumes()
|
|
}
|
|
|
|
// Next we mount required volumes. This function could also trigger
|
|
// attach if kubelet is responsible for attaching volumes.
|
|
// If underlying PVC was resized while in-use then this function also handles volume
|
|
// resizing.
|
|
rc.mountOrAttachVolumes()
|
|
|
|
// Unmount volumes only when DSW and ASW are fully populated to prevent unmounting a volume
|
|
// that is still needed, but it did not reach DSW yet.
|
|
if readyToUnmount {
|
|
// Ensure devices that should be detached/unmounted are detached/unmounted.
|
|
rc.unmountDetachDevices()
|
|
|
|
// Clean up any orphan volumes that failed reconstruction.
|
|
rc.cleanOrphanVolumes()
|
|
}
|
|
|
|
if len(rc.volumesNeedDevicePath) != 0 {
|
|
rc.updateReconstructedDevicePaths()
|
|
}
|
|
|
|
if len(rc.volumesNeedReportedInUse) != 0 && rc.populatorHasAddedPods() {
|
|
// Once DSW is populated, mark all reconstructed as reported in node.status,
|
|
// so they can proceed with MountDevice / SetUp.
|
|
rc.desiredStateOfWorld.MarkVolumesReportedInUse(rc.volumesNeedReportedInUse)
|
|
rc.volumesNeedReportedInUse = nil
|
|
}
|
|
}
|