f49b509534
This PS updates ironic deployment with IPA init container which contains python agent agent packages which are ubuntu based packages. The docker image for this can found here [0] [0] https://opendev.org/airship/images/src/branch/master/ipa-downloader-image Change-Id: Idaaafb2ddb562cf22a62df36100dd1e6c76211fc
10 lines
637 B
Plaintext
10 lines
637 B
Plaintext
#!ipxe
|
|
|
|
:retry_boot
|
|
echo In inspector.ipxe
|
|
imgfree
|
|
# NOTE(dtantsur): keep inspection kernel params in [mdns]params in ironic-inspector-image
|
|
kernel --timeout 60000 http://$(PROVISIONING_IP):80/images/ipa-ubuntu-master.kernel ipa-inspection-callback-url=http://$(PROVISIONING_IP):5050/v1/continue ipa-inspection-collectors=default,extra-hardware,logs systemd.journald.forward_to_console=yes BOOTIF=${mac} ipa-debug=1 ipa-inspection-dhcp-all-interfaces=1 ipa-collect-lldp=1 initrd=ipa-ubuntu-master.initramfs || goto retry_boot
|
|
initrd --timeout 60000 http://$(PROVISIONING_IP):80/images/ipa-ubuntu-master.initramfs || goto retry_boot
|
|
boot
|