Skip to content

Commit 91a9963

Browse files
committed
Increase Manila StorageClass sync wait delay
The Manila CSI driver operator reconciles OpenStack share types to Kubernetes StorageClasses on a ~60-minute interval. The current delay of 15 seconds (60 retries x 15s = 15 min total) is not enough to catch the next resync after a new share type is created mid-cycle. Verified from operator logs on serval70: the csi-manila-default SC was created at 01:17:11 UTC and csi-manila-foo at 02:17:11 UTC - exactly 60 minutes apart. The test created the foo share type at 01:57:51 and gave up at 02:14:29, missing the sync by 2m 42s. Change delay from 15s to 60s (matching install_custom_mce and change_cloud_cm patterns), keeping 60 retries for a 60-minute total wait that covers the full CSI operator resync cycle. Change-Id: I74f549f21d116856ca9ca47b57bd387314d7ecb7 Signed-off-by: Itay Matza <imatza@redhat.com> Assisted-By: Claude Code Signed-off-by: Itay Matza <imatza@redhat.com>
1 parent 7641d9a commit 91a9963

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

collection/stages/roles/verification/tasks/check_manila.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
kubeconfig: "{{ kubeconfig }}"
1414
register: scs
1515
retries: 60
16-
delay: 15
16+
delay: 60
1717
until: scs.resources|length == 1
1818

1919
- name: "Delete the {{ openshift_manila_type }} manila share type"

0 commit comments

Comments
 (0)