feat(gitea): create PersistentVolume and PersistentVolumeClaim for Gitea feat(gitea): add script to create Gitea runner registration token secret feat(gitea): deploy Gitea Actions runner with Docker socket access feat(media): deploy JDownloader with Ingress configuration feat(media): set up Jellyfin media server with NFS and Ingress feat(media): configure qBittorrent deployment with Ingress feat(monitoring): add Grafana Loki datasource ConfigMap feat(monitoring): create Grafana admin credentials secret feat(monitoring): define PersistentVolumes for monitoring stack feat(network): implement DDNS CronJob for Porkbun DNS updates feat(network): create secret for Porkbun DDNS API credentials feat(network): set up Glances service and Ingress for Debian node fix(network): patch Pi-hole DNS services with external IPs feat(network): configure Traefik dashboard Ingress with Authentik auth feat(network): set up Watch Party service and Ingress for Mac Mini refactor(values): update Helm values files for various services
31 lines
800 B
YAML
31 lines
800 B
YAML
---
|
|
# Part of role: k3s-agent
|
|
# Called by: ansible/playbooks/join-debian-agent.yaml
|
|
# Description: Installs K3s in agent mode, joins the cluster, and labels the node as storage.
|
|
|
|
- name: Download and install K3s agent
|
|
ansible.builtin.shell:
|
|
cmd: >
|
|
curl -sfL https://get.k3s.io |
|
|
INSTALL_K3S_VERSION={{ k3s_version }}
|
|
K3S_URL={{ k3s_server_url }}
|
|
K3S_TOKEN={{ k3s_node_token }}
|
|
sh -
|
|
creates: /usr/local/bin/k3s
|
|
|
|
- name: Ensure K3s agent service is running
|
|
ansible.builtin.service:
|
|
name: k3s-agent
|
|
state: started
|
|
enabled: true
|
|
become: true
|
|
|
|
- name: Label node as storage
|
|
ansible.builtin.shell:
|
|
cmd: >
|
|
k3s kubectl label node nik-debian
|
|
node-role=storage --overwrite
|
|
delegate_to: minisforum
|
|
become: true
|
|
changed_when: false
|