Compare commits

...

2 Commits

Author SHA1 Message Date
28164e533a chore: update README.md 2025-10-03 23:04:13 +10:00
cae3acac0c chore: set lxc storage location to local 2025-10-02 21:44:19 +10:00
3 changed files with 27 additions and 2 deletions

View File

@ -2,7 +2,7 @@
## 📖 Overview ## 📖 Overview
This repository provisions and manages the GitHub Self-Hosted Runner for the Comprofix Homelab Infrastructure. This repo is designed to be run manually to build and setup the runner when requuired. This repository provisions and manages the Gitea Self-Hosted Runner for the Comprofix Homelab Infrastructure. This repo is designed to be run manually to build and setup the runner when requuired.
Built using Infrastructure as Code (IaC) with [OpenTofu](https://opentofu.org/) and [Ansible](https://ansible.com) Built using Infrastructure as Code (IaC) with [OpenTofu](https://opentofu.org/) and [Ansible](https://ansible.com)
--- ---

View File

@ -22,7 +22,7 @@ resource "proxmox_lxc" "gtar" {
swap = "512" swap = "512"
rootfs { rootfs {
storage = "local-zfs" storage = "local"
size = "8G" size = "8G"
} }

25
renovate.json Normal file
View File

@ -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": [
"(?<varName>\\w+_image):\\s+\"(?<depName>[\\w./-]+):(?<currentValue>[\\w.-]+)\""
],
"datasourceTemplate": "docker"
}
]
}