fix: cleanup logging in prepare_cluster_config

This commit is contained in:
Roman 2025-02-21 10:30:57 +11:00
parent 9f729d9289
commit f11208c649
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75

View File

@ -22,7 +22,6 @@ def prepare_cluster_config(node_count, subnetwork_size=2):
template = Template(template_content)
rendered = template.render(num_hosts=node_count, subnet_size=subnetwork_size)
logger.debug(f"Rendered template {rendered}")
with open(f"{cwd}/{config_dir}/cfgsync.yaml", "w") as outfile:
outfile.write(rendered)