Compare commits

..

3 Commits

Author SHA1 Message Date
8adee3cdbe Added tailscale
Also routes the whole subnet of the cluster over tailscale so it can act
as an entry point to my home network even when not at home.
2025-11-11 04:15:38 +01:00
b7bf638475 Access node parameters through node instead of directly 2025-11-11 04:14:38 +01:00
4c4783953e Also load config settings from secrets.yaml 2025-11-11 04:14:33 +01:00

View File

@@ -144,6 +144,8 @@ def main():
with open(ROOT.joinpath("secrets.yaml")) as fyaml:
merge(config, yaml.safe_load(fyaml))
print(config)
template_args = {
"config": config,
"root": ROOT,