mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 01:40:07 +00:00
Merge pull request #47021 from liggitt/projected-err
Automatic merge from submit-queue (batch tested with PRs 46997, 47021) Block on projected volume data fetch failure Fixes #47020
This commit is contained in:
commit
5c9b9ae0cb
@ -195,6 +195,7 @@ func (s *projectedVolumeMounter) SetUpAt(dir string, fsGroup *types.UnixGroupID)
|
|||||||
data, err := s.collectData()
|
data, err := s.collectData()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.Errorf("Error preparing data for projected volume %v for pod %v/%v: %s", s.volName, s.pod.Namespace, s.pod.Name, err.Error())
|
glog.Errorf("Error preparing data for projected volume %v for pod %v/%v: %s", s.volName, s.pod.Namespace, s.pod.Name, err.Error())
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
writerContext := fmt.Sprintf("pod %v/%v volume %v", s.pod.Namespace, s.pod.Name, s.volName)
|
writerContext := fmt.Sprintf("pod %v/%v volume %v", s.pod.Namespace, s.pod.Name, s.volName)
|
||||||
|
Loading…
Reference in New Issue
Block a user