From cae3acac0c602f5e66e801a2e1b24650b7024410 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Thu, 2 Oct 2025 21:44:19 +1000 Subject: [PATCH] chore: set lxc storage location to local --- opentofu/200-gtar.tf | 2 +- renovate.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 renovate.json diff --git a/opentofu/200-gtar.tf b/opentofu/200-gtar.tf index 5c9f4d6..8ee6643 100644 --- a/opentofu/200-gtar.tf +++ b/opentofu/200-gtar.tf @@ -22,7 +22,7 @@ resource "proxmox_lxc" "gtar" { swap = "512" rootfs { - storage = "local-zfs" + storage = "local" size = "8G" } diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..ed38960 --- /dev/null +++ b/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>RenovateBot/renovate-config", + ":semanticCommitTypeAll(chore)" + ], + "automerge": false, + "schedule": ["every hour"], + "commitBodyTable": true, + "ignoreTests": true, + "major": { + "automerge": false, + "commitMessagePrefix": "chore(deps-major): ", + "labels": ["dependencies", "breaking"] + }, + "regexManagers": [ + { + "fileMatch": ["(^|/)tasks/.*\\.ya?ml$", "(^|/)playbooks/.*\\.ya?ml$"], + "matchStrings": [ + "(?\\w+_image):\\s+\"(?[\\w./-]+):(?[\\w.-]+)\"" + ], + "datasourceTemplate": "docker" + } + ] +} \ No newline at end of file