Compare commits

..

3 Commits

Author SHA1 Message Date
Dreaded_X 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
Dreaded_X b7bf638475 Access node parameters through node instead of directly 2025-11-11 04:14:38 +01:00
Dreaded_X 4c4783953e Also load config settings from secrets.yaml 2025-11-11 04:14:33 +01:00
+2
View File
@@ -144,6 +144,8 @@ def main():
with open(ROOT.joinpath("secrets.yaml")) as fyaml: with open(ROOT.joinpath("secrets.yaml")) as fyaml:
merge(config, yaml.safe_load(fyaml)) merge(config, yaml.safe_load(fyaml))
print(config)
template_args = { template_args = {
"config": config, "config": config,
"root": ROOT, "root": ROOT,