Add interfaces for deleting fstree, blobovnocza and pilorama.db

This commit is contained in:
Yaroslava Lukoyanova 2023-05-12 09:20:04 +03:00 committed by ylukoyan
parent d30d3d5cfd
commit d9504697ba
3 changed files with 48 additions and 0 deletions

View file

@ -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)