Bug 2082773
| Summary: | [AWS-EBS-CSI-driver-Operator] Generic ephemeral volumes online resize Filesystem type volume stucked at file system resize phase | |||
|---|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Penghao Wang <pewang> | |
| Component: | Storage | Assignee: | Hemant Kumar <hekumar> | |
| Storage sub component: | Operators | QA Contact: | Penghao Wang <pewang> | |
| Status: | CLOSED ERRATA | Docs Contact: | Olivia Payne <opayne> | |
| Severity: | medium | |||
| Priority: | unspecified | CC: | hekumar, jsafrane, opayne | |
| Version: | 4.11 | Flags: | pewang:
needinfo-
|
|
| Target Milestone: | --- | |||
| Target Release: | 4.12.0 | |||
| Hardware: | All | |||
| OS: | All | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: |
* Previously, checks for generic ephemeral volumes failed. With this update, checks for expandable volumes now include generic ephemeral volumes. (link:https://bugzilla.redhat.com/show_bug.cgi?id=2082773[*BZ#2082773*]
|
Story Points: | --- | |
| Clone Of: | ||||
| : | 2104344 (view as bug list) | Environment: | ||
| Last Closed: | 2023-01-17 19:48:48 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 2104344 | |||
Yeah I don't think you are supposed to modify the workloads directly. I opened https://github.com/kubernetes/kubernetes/pull/109987 to fix the issue and verified that it works. Got it. Many thanks for the fix and clarify! I have backported the fixes to 1.24 and 1.23 - https://github.com/kubernetes/kubernetes/pull/110117 and https://github.com/kubernetes/kubernetes/pull/110118 I will keep an eye on them getting merged and once they merge I will probably link this to a bug that does rebase. Sure. Thanks! backport for OCP - https://github.com/openshift/kubernetes/pull/1296 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Moderate: OpenShift Container Platform 4.12.0 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:7399 |
I think this is happening because we are explicily checking for pvc sources in pod's volume: /// if podVolume.PersistentVolumeClaim == nil || pvc == nil { // Only PVC supports resize operation. return } And since this returns false - resize operation is not attempted.