Attempt native imagebuilder image
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2023-02-23 21:17:50 +01:00
parent 1ffdb79f41
commit a32a6c9c0c
430 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
- name: Create kubeadm config file
template:
dest: /etc/kubeadm.yml
src: "{{ kubeadm_template }}"
mode: 0600
- name: Kubeadm pull images
shell: 'kubeadm config images pull --config /etc/kubeadm.yml --cri-socket {{ containerd_cri_socket }}'
- name: Delete kubeadm config
file:
path: /etc/kubeadm.yml
state: absent
when: ansible_os_family != "Flatcar"