aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/k8s/tasks/install_k3s_worker.yml
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-03-03 21:20:59 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-03-03 21:20:59 +0100
commit0182fe51736e7610d4a63fe6767d08ffe5c5938c (patch)
tree0025603ddfb75ae556d1f949be4c7882ea972ee9 /ansible/roles/k8s/tasks/install_k3s_worker.yml
parentf8f9666a8e630d6d64a883bca25ccc4ba98d73e4 (diff)
ansible: add dynamic inventory & playbooks to install k3s hosts
bootstrap.yml will now be used to install any configuration on new provisionned servers, based on tags given by the dynamic inventory
Diffstat (limited to 'ansible/roles/k8s/tasks/install_k3s_worker.yml')
-rw-r--r--ansible/roles/k8s/tasks/install_k3s_worker.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/ansible/roles/k8s/tasks/install_k3s_worker.yml b/ansible/roles/k8s/tasks/install_k3s_worker.yml
new file mode 100644
index 0000000..ffe2af0
--- /dev/null
+++ b/ansible/roles/k8s/tasks/install_k3s_worker.yml
@@ -0,0 +1,19 @@
+---
+- name: Retrieve k3s token and master IP from master node
+ ansible.builtin.set_fact:
+ k3s_token: "{{ hostvars[groups['tag_k3s_master'][0]].k3s_token }}"
+ k3s_master_ip: "{{ hostvars[groups['tag_k3s_master'][0]].ansible_default_ipv4.address }}"
+
+- name: Download k3s installation script
+ ansible.builtin.get_url:
+ url: https://get.k3s.io
+ dest: /tmp/install_k3s.sh
+ mode: '0755'
+
+- name: Install k3s agent
+ ansible.builtin.command: >
+ /tmp/install_k3s.sh agent
+ --server https://{{ k3s_master_ip }}:6443
+ --token {{ k3s_token }}
+ become: true
+...