forked from TrueCloudLab/frostfs-testlib
Add interfaces for deleting fstree, blobovnocza and pilorama.db
This commit is contained in:
parent
d30d3d5cfd
commit
d9504697ba
3 changed files with 48 additions and 0 deletions
|
@ -129,6 +129,15 @@ class DockerHost(Host):
|
|||
timeout=service_attributes.start_timeout,
|
||||
)
|
||||
|
||||
def delete_fstree(self, service_name: str) -> None:
|
||||
raise NotImplementedError("Not implemented for docker")
|
||||
|
||||
def delete_blobovnicza(self, service_name: str) -> None:
|
||||
raise NotImplementedError("Not implemented for docker")
|
||||
|
||||
def delete_pilorama(self, service_name: str) -> None:
|
||||
raise NotImplementedError("Not implemented for docker")
|
||||
|
||||
def delete_storage_node_data(self, service_name: str, cache_only: bool = False) -> None:
|
||||
service_attributes = self._get_service_attributes(service_name)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue