
Builds ephemeral ISO and target host images. Also replaces isogen (iso-builder) with a single ansible-driven build tool for both types of airship images used: ephemeral ISO as well as target QCOW2 images deployed to base nodes. Change-Id: I6d0368de771869e4e645a03d8a20f470b34602ab
12 lines
334 B
YAML
12 lines
334 B
YAML
# airshipctl cloud-init will overwrite with its own /etc/hostname and /etc/hosts fqdn
|
|
- name: "hostname and hosts | write out hostname file"
|
|
template:
|
|
src: hostname.j2
|
|
dest: "/etc/hostame"
|
|
mode: 0644
|
|
- name: "hostname and hosts | write out hosts file"
|
|
template:
|
|
src: hosts.j2
|
|
dest: "/etc/hosts"
|
|
mode: 0644
|