From 915b5aac62931908c9cb11c7a265133198e8c701 Mon Sep 17 00:00:00 2001 From: jdelpilar Date: Fri, 12 Jun 2026 17:09:54 -0700 Subject: [PATCH 1/3] fix: Container file name issue (#1) This PR fixes a minor bug in the generation of container files for act_runner. container files were being created missing a period for the file extension. Expected outcome is act_runner.container, however before this fix container files were being created as act_runnercontainer. --------- Co-authored-by: Jordan Del Pilar Reviewed-on: https://git.delpilar.net/jdelpilar/johto-infra/pulls/1 --- roles/gitea_server/tasks/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/gitea_server/tasks/main.yaml b/roles/gitea_server/tasks/main.yaml index 14b007a..ab3d14c 100644 --- a/roles/gitea_server/tasks/main.yaml +++ b/roles/gitea_server/tasks/main.yaml @@ -20,7 +20,7 @@ - name: Create Act Runner Quadlets ansible.builtin.template: src: act_runner_quadlet.j2 - dest: "{{ podman_quadlet_base_dir }}/management/{{ item.name }}container" + dest: "{{ podman_quadlet_base_dir }}/management/{{ item.name }}.container" owner: "{{ ansible_user }}" mode: "664" loop: "{{ runner_services }}" From afb53ba84969f2788a4d9dd4feacc69700ee7052 Mon Sep 17 00:00:00 2001 From: jdelpilar Date: Fri, 12 Jun 2026 17:13:59 -0700 Subject: [PATCH 2/3] chore: Update Runner token (#2) This PR rotates the runner token for act_runner. --------- Co-authored-by: Jordan Del Pilar Reviewed-on: https://git.delpilar.net/jdelpilar/johto-infra/pulls/2 --- host_vars/new-bark.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/host_vars/new-bark.yaml b/host_vars/new-bark.yaml index b84e1e8..9d9c865 100644 --- a/host_vars/new-bark.yaml +++ b/host_vars/new-bark.yaml @@ -36,9 +36,9 @@ runner_services: gitea_url: https://git.delpilar.net runner_token: !vault | $ANSIBLE_VAULT;1.1;AES256 - 35303036303665376330616430373733363066333332323362623237373262383230316431346338 - 3862636465623436343062316662666531623562353164650a313434633865656634366136643430 - 37653263636535656561613663363165313332323164313365306433363036333437373333316632 - 6563356532323964660a626531303962626236363961356639623263373030663462623235393366 - 36343736663063313933306465626634383863366538343930386335353762663866623535636465 - 3461386532333061323435363366653633613035386363633162 + 35633638333533656334616237666165663262616538653833633065633066633437336563633766 + 3865643937383633363665633438616361363666386335300a663437643763323933613638653037 + 63623535353236306262316561623037613064346264393435653931396562613335663163353265 + 3631366361653166310a616432386638613461623332383062336566613131353433303337366633 + 37663263626532656630646332303532653165653835666362656263616162356137316465336332 + 3934303430626561306166393262646139646234333364656237 From 23e3d4af5f215f1a7f50eee208129964b9a0d660 Mon Sep 17 00:00:00 2001 From: jdelpilar Date: Fri, 12 Jun 2026 17:34:35 -0700 Subject: [PATCH 3/3] chore: Update Runner token (#3) This PR adds a CI/CD pipeline. On push to all branches it runs ansible-lint against the commit On push to main it runs the playbook against all targets --------- Co-authored-by: Jordan Del Pilar Reviewed-on: https://git.delpilar.net/jdelpilar/johto-infra/pulls/3