Initial setup 'kube-virt'
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Danny Bessems 2022-04-20 14:27:31 +02:00
parent fcf3353502
commit c6a0490af7
1 changed files with 12 additions and 0 deletions

View File

@ -116,6 +116,18 @@
ansible.builtin.set_fact:
cluster: "{{ cluster | combine( { 'token': ( k3s_token.content | b64decode | trim ) } ) }}"
- name: Pull 'kube-vip' image
ansible.builtin.shell:
cmd: ctr image pull ghcr.io/kube-vip/kube-vip:latest
- name: Generate manifest for daemonSet
ansible.builtin.shell:
cmd: "ctr run --rm --net-host ghcr.io/kube-vip/kube-vip:latest vip /kube-vip manifest daemonset --interface {{ ansible_interfaces | difference(['lo']) }} --address {{ cluster.virtualip | ansible.utils.ipaddr('address') }} --inCluster --taint --controlplane --services --arp --leaderElection"
register: manifest
- ansible.builtin.debug:
var: manifest
when: inventory_hostname == ansible_play_hosts[0]
- name: Additional nodes