Skip to content

Commit

Permalink
fix(k8s): skip 'nodetool_enospc' nemesis as broken
Browse files Browse the repository at this point in the history
The 'nodetool_enospc' nemesis fails all the time on K8S [1].
So, skip it until the the bug gets fixed.

[1] #6327
  • Loading branch information
vponomaryov committed Aug 17, 2023
1 parent 1deb381 commit c18f651
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdcm/nemesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,8 @@ def disrupt_nodetool_refresh(self, big_sstable: bool = False):

def _k8s_fake_enospc_error(self, node):
"""Fakes ENOSPC error for scylla container (for /var/lib/scylla dir) using chaos-mesh without filling up disk."""
if not self._is_chaos_mesh_initialized():
raise UnsupportedNemesis("https://github.com/scylladb/scylla-cluster-tests/issues/6327")
if not self._is_chaos_mesh_initialized(): # pylint: disable=unreachable
raise UnsupportedNemesis(
"Chaos Mesh is not installed. Set 'k8s_use_chaos_mesh' config option to 'true'")
no_space_errors_in_log = node.follow_system_log(patterns=['No space left on device'])
Expand Down

0 comments on commit c18f651

Please sign in to comment.