Fix var reference;Install packages;Change DHCP identifier to MAC
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
4d78d65ad8
commit
fc23dc068d
@ -8,7 +8,7 @@
|
||||
- name: Download & install static binaries
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ item.url }}"
|
||||
dest: "/usr/local/bin/{{ item.name }}"
|
||||
dest: "/usr/local/bin/{{ item.filename }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
@ -19,6 +19,18 @@
|
||||
cmd: "ansible-galaxy collection install {{ item }}"
|
||||
loop: "{{ dependencies.ansible_galaxy_collections }}"
|
||||
|
||||
- name: Install distro packages
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
update_cache: yes
|
||||
install_recommends: no
|
||||
loop: "{{ dependencies.distro_packages }}"
|
||||
|
||||
- name: Update all packages
|
||||
ansible.builtin.apt:
|
||||
name: *
|
||||
state: latest
|
||||
|
||||
- block:
|
||||
|
||||
- name: Download Helm binary
|
||||
|
@ -25,5 +25,8 @@ dependencies:
|
||||
- kubernetes.core
|
||||
|
||||
static_binaries:
|
||||
- binary: yq
|
||||
- filename: yq
|
||||
url: http://github.com/mikefarah/yq/releases/download/v4.25.2/yq_linux_amd64
|
||||
|
||||
packages:
|
||||
- skopeo
|
||||
|
@ -11,6 +11,7 @@ autoinstall:
|
||||
ethernets:
|
||||
ens192:
|
||||
dhcp4: true
|
||||
dhcp-identifier: mac
|
||||
storage:
|
||||
layout:
|
||||
name: direct
|
||||
|
Loading…
Reference in New Issue
Block a user