You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
892: fix(csi-node): handle devices for existing subsystems r=tiagolobocastro a=tiagolobocastro
When a device is broken but the volume is not unstaged properly, the subsytem ends up lingering in the system.
If the device is staged again, the device is assined a different namespace id. Change the regex which is used in the device parameter fo account for this. Also extend the existing csi-node BDD testing.
Co-authored-by: Tiago Castro <[email protected]>
Copy file name to clipboardExpand all lines: tests/bdd/README.md
+18-2
Original file line number
Diff line number
Diff line change
@@ -2,61 +2,77 @@
2
2
3
3
The BDD tests are written in Python and make use of the pytest-bdd library.
4
4
5
-
The feature files in the `features` directory define the behaviour expected of the control plane. These behaviours are described using the [Gherkin](https://cucumber.io/docs/gherkin/) syntax.
5
+
The feature files in the `features` directory define the behaviour expected of the control plane. These behaviours are
6
+
described using the [Gherkin](https://cucumber.io/docs/gherkin/) syntax.
6
7
7
-
The feature files can be used to auto-generate the test file. For example running `pytest-bdd generate replicas.feature > test_volume_replicas.py`
8
+
The feature files can be used to auto-generate the test file. For example
0 commit comments