Initial commit

This commit is contained in:
2026-01-13 12:16:09 -05:00
commit 61b39a2161
8 changed files with 110 additions and 0 deletions

19
tasks/main.yml Normal file
View File

@@ -0,0 +1,19 @@
#SPDX-License-Identifier: MIT-0
---
# tasks file for ansible-role-tor
- name: Add bugfest repo
kubernetes.core.helm_repository:
name: bugfest
repo_url: https://bugfest.github.io/tor-controller
register: repo_update
- name: Update Helm repos
command: helm repo update
when: repo_update.changed
- name: Deploy Tor Controller
kubernetes.core.helm:
name: tor-controller
chart_ref: bugfest/tor-controller
release_namespace: tor-controller
create_namespace: true