-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate Cinder operations #649
base: main
Are you sure you want to change the base?
Validate Cinder operations #649
Conversation
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/4f2b18d208c34646b095f1658057761c ❌ adoption-standalone-to-crc-ceph FAILURE in 2h 43m 01s |
769d469
to
6763758
Compare
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/a9fd12c3a3e14a98a9e2d59fb171ad92 ❌ adoption-standalone-to-crc-ceph FAILURE in 51m 07s |
6763758
to
6792d7c
Compare
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/c22679b04ba042c7be2ac85f268a0878 ❌ adoption-standalone-to-crc-ceph FAILURE in 3h 14m 19s |
6792d7c
to
fa3872d
Compare
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/037f52b8c18643f5b2c0448cf954adf7 ❌ adoption-standalone-to-crc-ceph FAILURE in 2h 45m 40s |
recheck heat isssue shoud be fixed by https://review.rdoproject.org/r/c/rdo-jobs/+/55212 |
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/f75adcff76c247d8adbf76d9d3e3797c ❌ adoption-standalone-to-crc-ceph FAILURE in 3h 12m 06s |
fa3872d
to
0d01bc5
Compare
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/30661a6ae848471f9550b060689efaa2 ❌ adoption-standalone-to-crc-ceph FAILURE in 3h 20m 42s |
0d01bc5
to
cda6e92
Compare
Build failed (check pipeline). Post https://softwarefactory-project.io/zuul/t/rdoproject.org/buildset/7d9b0f98880749a9ae7695e1a89b2c1e ❌ adoption-standalone-to-crc-ceph FAILURE in 3h 14m 20s |
After the adoption, we check for the correct status and size of the Cinder resources but don't validate that operations still work on them. This patch adds the following operations: 1. Detach 'disk' volume from 'test' server 2. Revert to snapshot 'snapshot' to 'disk' volume 3. Attach 'disk' volume to 'test' server This will help verify that the resources are in consistent state before and after the adoption. NOTE: We are skipping restore backup since it's failing even with 20 retries with 10 second delay. Will add that in a follow up PR after resolving the issues.
cda6e92
to
7ba0dba
Compare
All checks are passing and tasks being executed TASK [dataplane_adoption : Detach the disk data volume] ************************ TASK [dataplane_adoption : Wait for disk data volume to be available after detach] *** TASK [dataplane_adoption : Restore snapshot to disk volume] ******************** TASK [dataplane_adoption : Wait for disk data volume to be available after revert] *** TASK [dataplane_adoption : Attach the disk data volume] ************************ TASK [dataplane_adoption : Wait for disk data volume to be in-use after attach] *** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
After the adoption, we check for the correct status and size of the
Cinder resources but don't validate that operations still work on them.
This patch adds the following operations:
This will help verify that the resources are in consistent state before
and after the adoption.
NOTE: We are skipping restore backup since it's failing even with 20
retries with 10 second delay. Will add that in a follow up PR after
resolving the issues.