Improve task naming
continuous-integration/drone/push Build encountered an error Details

This commit is contained in:
Danny Bessems 2022-04-20 16:54:56 +02:00
parent 2769cff893
commit 38f8dd96e1
1 changed files with 11 additions and 14 deletions

View File

@ -100,51 +100,48 @@
- cluster.k3s.yml
tasks:
- name: Initial node
block:
- block:
- name: Install K3s binary
- name: \[Initial node\] Install K3s binary
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') }}"
- name: Retrieve token
- name: \[Initial node\] Retrieve token
ansible.builtin.slurp:
src: /var/lib/rancher/k3s/server/token
register: k3s_token
- name: Store token
- name: \[Initial node\] Store token
ansible.builtin.set_fact:
clustertoken: "{{ k3s_token.content | b64decode | trim }}"
- name: Install 'kube-vip'
block:
- block:
- name: Retrieve manifest for RBAC
- name: \[Install 'kube-vip'\] Retrieve manifest for RBAC
ansible.builtin.uri:
url: https://kube-vip.io/manifests/rbac.yaml
return_content: yes
register: manifest_rbac
- name: Pull image
- name: \[Install 'kube-vip'\] Pull image
ansible.builtin.shell:
cmd: ctr image pull ghcr.io/kube-vip/kube-vip:latest
- name: Generate manifest for daemonSet
- name: \[Install 'kube-vip'\] 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_default_ipv4.interface }} --address {{ cluster.virtualip | ansible.utils.ipaddr('address') }} --inCluster --taint --controlplane --services --arp --leaderElection"
register: manifest_daemonset
- name: Inject manifest for installation
- name: \[Install 'kube-vip'\] Inject manifest for installation
ansible.builtin.template:
src: kube-vip.j2
dest: /var/lib/rancher/k3s/server/manifests/kube-vip.yml
when: inventory_hostname == ansible_play_hosts[0]
- name: Additional nodes
block:
- block:
- name: Install K3s binary
- name: \[Additional nodes\] Install K3s binary
ansible.builtin.shell:
cmd: "curl -sfL https://get.k3s.io | sh -s - server --disable local-storage,traefik"
environment: