mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
189 lines
8.5 KiB
Go
189 lines
8.5 KiB
Go
/*
|
|
Copyright 2016 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 (
|
|
"context"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/kubernetes/pkg/volume/util/nestedpendingoperations"
|
|
"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
|
|
)
|
|
|
|
// sync process tries to observe the real world by scanning all pods' volume directories from the disk.
|
|
// If the actual and desired state of worlds are not consistent with the observed world, it means that some
|
|
// mounted volumes are left out probably during kubelet restart. This process will reconstruct
|
|
// the volumes and update the actual and desired states. For the volumes that cannot support reconstruction,
|
|
// it will try to clean up the mount paths with operation executor.
|
|
func (rc *reconciler) sync() {
|
|
defer rc.updateLastSyncTime()
|
|
rc.syncStates(rc.kubeletPodsDir)
|
|
}
|
|
|
|
// syncStates scans the volume directories under the given pod directory.
|
|
// If the volume is not in desired state of world, this function will reconstruct
|
|
// the volume related information and put it in both the actual and desired state of worlds.
|
|
// For some volume plugins that cannot support reconstruction, it will clean up the existing
|
|
// mount points since the volume is no long needed (removed from desired state)
|
|
func (rc *reconciler) syncStates(kubeletPodDir string) {
|
|
// Get volumes information by reading the pod's directory
|
|
podVolumes, err := getVolumesFromPodDir(kubeletPodDir)
|
|
if err != nil {
|
|
klog.ErrorS(err, "Cannot get volumes from disk, skip sync states for volume reconstruction")
|
|
return
|
|
}
|
|
volumesNeedUpdate := make(map[v1.UniqueVolumeName]*globalVolumeInfo)
|
|
volumeNeedReport := []v1.UniqueVolumeName{}
|
|
for _, volume := range podVolumes {
|
|
if rc.actualStateOfWorld.VolumeExistsWithSpecName(volume.podName, volume.volumeSpecName) {
|
|
klog.V(4).InfoS("Volume exists in actual state, skip cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
|
|
// There is nothing to reconstruct
|
|
continue
|
|
}
|
|
volumeInDSW := rc.desiredStateOfWorld.VolumeExistsWithSpecName(volume.podName, volume.volumeSpecName)
|
|
|
|
reconstructedVolume, err := rc.reconstructVolume(volume)
|
|
if err != nil {
|
|
if volumeInDSW {
|
|
// Some pod needs the volume, don't clean it up and hope that
|
|
// reconcile() calls SetUp and reconstructs the volume in ASW.
|
|
klog.V(4).InfoS("Volume exists in desired state, skip cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
|
|
continue
|
|
}
|
|
// No pod needs the volume.
|
|
klog.InfoS("Could not construct volume information, cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName, "err", err)
|
|
rc.cleanupMounts(volume)
|
|
continue
|
|
}
|
|
gvl := &globalVolumeInfo{
|
|
volumeName: reconstructedVolume.volumeName,
|
|
volumeSpec: reconstructedVolume.volumeSpec,
|
|
devicePath: reconstructedVolume.devicePath,
|
|
deviceMounter: reconstructedVolume.deviceMounter,
|
|
blockVolumeMapper: reconstructedVolume.blockVolumeMapper,
|
|
mounter: reconstructedVolume.mounter,
|
|
}
|
|
if cachedInfo, ok := volumesNeedUpdate[reconstructedVolume.volumeName]; ok {
|
|
gvl = cachedInfo
|
|
}
|
|
gvl.addPodVolume(reconstructedVolume)
|
|
if volumeInDSW {
|
|
// Some pod needs the volume. And it exists on disk. Some previous
|
|
// kubelet must have created the directory, therefore it must have
|
|
// reported the volume as in use. Mark the volume as in use also in
|
|
// this new kubelet so reconcile() calls SetUp and re-mounts the
|
|
// volume if it's necessary.
|
|
volumeNeedReport = append(volumeNeedReport, reconstructedVolume.volumeName)
|
|
rc.skippedDuringReconstruction[reconstructedVolume.volumeName] = gvl
|
|
klog.V(4).InfoS("Volume exists in desired state, marking as InUse", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
|
|
continue
|
|
}
|
|
// There is no pod that uses the volume.
|
|
if rc.operationExecutor.IsOperationPending(reconstructedVolume.volumeName, nestedpendingoperations.EmptyUniquePodName, nestedpendingoperations.EmptyNodeName) {
|
|
klog.InfoS("Volume is in pending operation, skip cleaning up mounts")
|
|
}
|
|
klog.V(2).InfoS("Reconciler sync states: could not find pod information in desired state, update it in actual state", "reconstructedVolume", reconstructedVolume)
|
|
volumesNeedUpdate[reconstructedVolume.volumeName] = gvl
|
|
}
|
|
|
|
if len(volumesNeedUpdate) > 0 {
|
|
if err = rc.updateStates(volumesNeedUpdate); err != nil {
|
|
klog.ErrorS(err, "Error occurred during reconstruct volume from disk")
|
|
}
|
|
}
|
|
if len(volumeNeedReport) > 0 {
|
|
rc.desiredStateOfWorld.MarkVolumesReportedInUse(volumeNeedReport)
|
|
}
|
|
}
|
|
|
|
// updateDevicePath gets the node status to retrieve volume device path information.
|
|
func (rc *reconciler) updateDevicePath(volumesNeedUpdate map[v1.UniqueVolumeName]*globalVolumeInfo) {
|
|
node, fetchErr := rc.kubeClient.CoreV1().Nodes().Get(context.TODO(), string(rc.nodeName), metav1.GetOptions{})
|
|
if fetchErr != nil {
|
|
klog.ErrorS(fetchErr, "UpdateStates in reconciler: could not get node status with error")
|
|
} else {
|
|
for _, attachedVolume := range node.Status.VolumesAttached {
|
|
if volume, exists := volumesNeedUpdate[attachedVolume.Name]; exists {
|
|
volume.devicePath = attachedVolume.DevicePath
|
|
volumesNeedUpdate[attachedVolume.Name] = volume
|
|
klog.V(4).InfoS("Update devicePath from node status for volume", "volumeName", attachedVolume.Name, "path", volume.devicePath)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (rc *reconciler) updateStates(volumesNeedUpdate map[v1.UniqueVolumeName]*globalVolumeInfo) error {
|
|
// Get the node status to retrieve volume device path information.
|
|
// Skip reporting devicePath in node objects if kubeClient is nil.
|
|
// In standalone mode, kubelet is not expected to mount any attachable volume types or secret, configmaps etc.
|
|
if rc.kubeClient != nil {
|
|
rc.updateDevicePath(volumesNeedUpdate)
|
|
}
|
|
|
|
for _, gvl := range volumesNeedUpdate {
|
|
err := rc.actualStateOfWorld.MarkVolumeAsAttached(
|
|
//TODO: the devicePath might not be correct for some volume plugins: see issue #54108
|
|
klog.TODO(), gvl.volumeName, gvl.volumeSpec, rc.nodeName, gvl.devicePath)
|
|
if err != nil {
|
|
klog.ErrorS(err, "Could not add volume information to actual state of world", "volumeName", gvl.volumeName)
|
|
continue
|
|
}
|
|
for _, volume := range gvl.podVolumes {
|
|
err = rc.markVolumeState(volume, operationexecutor.VolumeMounted)
|
|
if err != nil {
|
|
klog.ErrorS(err, "Could not add pod to volume information to actual state of world", "pod", klog.KObj(volume.pod))
|
|
continue
|
|
}
|
|
klog.V(2).InfoS("Volume is marked as mounted and added into the actual state", "pod", klog.KObj(volume.pod), "podName", volume.podName, "volumeName", volume.volumeName)
|
|
}
|
|
// If the volume has device to mount, we mark its device as mounted.
|
|
if gvl.deviceMounter != nil || gvl.blockVolumeMapper != nil {
|
|
deviceMountPath, err := getDeviceMountPath(gvl)
|
|
if err != nil {
|
|
klog.ErrorS(err, "Could not find device mount path for volume", "volumeName", gvl.volumeName)
|
|
continue
|
|
}
|
|
err = rc.actualStateOfWorld.MarkDeviceAsMounted(gvl.volumeName, gvl.devicePath, deviceMountPath, "")
|
|
if err != nil {
|
|
klog.ErrorS(err, "Could not mark device is mounted to actual state of world", "volume", gvl.volumeName)
|
|
continue
|
|
}
|
|
klog.V(2).InfoS("Volume is marked device as mounted and added into the actual state", "volumeName", gvl.volumeName)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (rc *reconciler) markVolumeState(volume *reconstructedVolume, volumeState operationexecutor.VolumeMountState) error {
|
|
markVolumeOpts := operationexecutor.MarkVolumeOpts{
|
|
PodName: volume.podName,
|
|
PodUID: types.UID(volume.podName),
|
|
VolumeName: volume.volumeName,
|
|
Mounter: volume.mounter,
|
|
BlockVolumeMapper: volume.blockVolumeMapper,
|
|
OuterVolumeSpecName: volume.outerVolumeSpecName,
|
|
VolumeGidVolume: volume.volumeGidValue,
|
|
VolumeSpec: volume.volumeSpec,
|
|
VolumeMountState: volumeState,
|
|
}
|
|
err := rc.actualStateOfWorld.MarkVolumeAsMounted(markVolumeOpts)
|
|
return err
|
|
}
|