Skip to content

Commit

Permalink
test(node): add auto detach manually attached volume when node cordoned
Browse files Browse the repository at this point in the history
ref: longhorn/longhorn 6978

Signed-off-by: Jack Lin <jack.lin@suse.com>
  • Loading branch information
ChanYiLin authored and David Ko committed Dec 21, 2023
1 parent cf6b2a8 commit e9545af
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
2 changes: 2 additions & 0 deletions manager/integration/tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@
"allow-volume-creation-with-degraded-availability"
SETTING_DISABLE_SCHEDULING_ON_CORDONED_NODE = \
"disable-scheduling-on-cordoned-node"
SETTING_DETACH_MANUALLY_ATTACHED_VOLUMES_WHEN_CORDONED = \
"detach-manually-attached-volumes-when-cordoned"
SETTING_GUARANTEED_INSTANCE_MANAGER_CPU = "guaranteed-instance-manager-cpu"
SETTING_PRIORITY_CLASS = "priority-class"
SETTING_RECURRING_JOB_WHILE_VOLUME_DETACHED = \
Expand Down
58 changes: 57 additions & 1 deletion manager/integration/tests/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
SETTING_DEFAULT_DATA_PATH, \
SETTING_CREATE_DEFAULT_DISK_LABELED_NODES, \
DEFAULT_STORAGE_OVER_PROVISIONING_PERCENTAGE, \
SETTING_DISABLE_SCHEDULING_ON_CORDONED_NODE
SETTING_DISABLE_SCHEDULING_ON_CORDONED_NODE, \
SETTING_DETACH_MANUALLY_ATTACHED_VOLUMES_WHEN_CORDONED
from common import get_volume_endpoint
from common import get_update_disks
from common import wait_for_disk_status, wait_for_disk_update, \
Expand Down Expand Up @@ -2750,3 +2751,58 @@ def test_drain_with_block_for_eviction_failure():
- Verify that `replica.spec.evictionRequested == true`.
7. Verify the drain never completes.
"""

@pytest.mark.node # NOQA
def test_auto_detach_volume_when_node_is_cordoned(client, core_api, volume_name): # NOQA
"""
Test auto detach volume when node is cordoned
1. Set `detach-manually-attached-volumes-when-cordoned` to `false`.
2. Create a volume and attached to the node through API (manually).
3. Cordon the node.
4. Set `detach-manually-attached-volumes-when-cordoned` to `true`.
5. Volume will be detached automatically.
"""

# Set `Detach Manually Attached Volumes When Cordoned` to false
detach_manually_attached_volumes_when_cordoned = \
client.by_id_setting(
SETTING_DETACH_MANUALLY_ATTACHED_VOLUMES_WHEN_CORDONED)
client.update(detach_manually_attached_volumes_when_cordoned,
value="false")

# Create a volume
volume = client.create_volume(name=volume_name,
size=SIZE,
numberOfReplicas=3)
volume = common.wait_for_volume_detached(client,
volume_name)
assert volume.restoreRequired is False

# Attach to the node
host_id = get_self_host_id()
volume.attach(hostId=host_id)
volume = common.wait_for_volume_healthy(client, volume_name)
assert volume.restoreRequired is False

# Cordon the node
set_node_cordon(core_api, host_id, True)

# Volume is still attached for a while
time.sleep(NODE_UPDATE_WAIT_INTERVAL)
volume = common.wait_for_volume_healthy(client, volume_name)
assert volume.restoreRequired is False

# Set `Detach Manually Attached Volumes When Cordoned` to true
client.update(detach_manually_attached_volumes_when_cordoned, value="true")

# Volume should be detached
volume = common.wait_for_volume_detached(client, volume_name)
assert volume.restoreRequired is False

# Delete the Volume
client.delete(volume)
common.wait_for_volume_delete(client, volume_name)

volumes = client.list_volume().data
assert len(volumes) == 0

0 comments on commit e9545af

Please sign in to comment.