Fix autovar reference
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
c8793cee43
commit
f997876fd3
@ -103,19 +103,19 @@
|
||||
- name: Install K3s binary (initial node)
|
||||
ansible.builtin.shell:
|
||||
cmd: "curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-storage,traefik --tls-san {{ cluster.virtualip | ansible.utils.ipaddr('address') }}"
|
||||
when: inventory_hostname == k3s_ha[0]
|
||||
when: inventory_hostname == ansible_play_hosts[0]
|
||||
|
||||
- name: Retrieve token (from initial node)
|
||||
ansible.builtin.slurp:
|
||||
src: /var/lib/rancher/k3s/server/token
|
||||
register: k3s_token
|
||||
run_once: true
|
||||
delegate_to: k3s_ha[0]
|
||||
delegate_to: ansible_play_hosts[0]
|
||||
|
||||
- name: Install K3s binary (additional nodes)
|
||||
ansible.builtin.shell:
|
||||
cmd: "curl -sfL https://get.k3s.io | sh -s - server --cluster-init --disable local-storage,traefik --tls-san {{ cluster.virtualip | ansible.utils.ipaddr('address') }}"
|
||||
cmd: "curl -sfL https://get.k3s.io | sh -s - server --disable local-storage,traefik"
|
||||
environment:
|
||||
K3S_TOKEN: "{{ k3s_token.content | b64decode | trim }}"
|
||||
K3S_URL: "{{ 'https://' + ( cluster.virtualip | ansible.utils.ipaddr('address') ) + ':6443' }}"
|
||||
when: inventory_hostname != k3s_ha[0]
|
||||
when: inventory_hostname != ansible_play_hosts[0]
|
||||
|
Loading…
Reference in New Issue
Block a user