export const deleteCluster = async (id: string): Promise<void> => {
  await fetchEndpoint("delete", `${baseUrlKubernetes}/clusters/${id}`, false);
};