File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
internal/controller/postgrescluster Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,15 @@ func (r *Reconciler) observePersistentVolumeClaims(
130
130
resizing .LastTransitionTime = minNotZero (
131
131
resizing .LastTransitionTime , condition .LastTransitionTime )
132
132
}
133
+
134
+ case
135
+ // The "ModifyingVolume" and "ModifyVolumeError" conditions occur
136
+ // when the attribute class of a PVC is changing. These attributes
137
+ // do not affect the size of a volume, so there's nothing to do.
138
+ // See the "VolumeAttributesClass" feature gate.
139
+ // - https://git.k8s.io/enhancements/keps/sig-storage/3751-volume-attributes-class
140
+ corev1 .PersistentVolumeClaimVolumeModifyingVolume ,
141
+ corev1 .PersistentVolumeClaimVolumeModifyVolumeError :
133
142
}
134
143
}
135
144
}
You can’t perform that action at this time.
0 commit comments