54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
---
|
|
# Ironic Python Agent (IPA) configuration.
|
|
|
|
###############################################################################
|
|
# Ironic Python Agent (IPA) image build configuration.
|
|
|
|
# Whether to build IPA images from source.
|
|
ipa_build_images: False
|
|
|
|
# URL of IPA source repository.
|
|
ipa_build_source_url: "https://github.com/openstack/ironic-python-agent"
|
|
|
|
# Version of IPA source repository.
|
|
ipa_build_source_version: "stable/ocata"
|
|
|
|
# URL of IPA upper constraints file.
|
|
ipa_build_upper_constraints_file_url:
|
|
|
|
# Custom python package version constraints for IPA. Dict mapping package name
|
|
# to upper version constraint.
|
|
ipa_build_custom_upper_constraints: []
|
|
|
|
###############################################################################
|
|
# Ironic Python Agent (IPA) images configuration.
|
|
|
|
# Name of Ironic deployment kernel image to register in Glance.
|
|
ipa_images_kernel_name: "ipa.vmlinuz"
|
|
|
|
# URL of Ironic deployment kernel image to download.
|
|
ipa_kernel_upstream_url: "https://tarballs.openstack.org/ironic-python-agent/coreos/files/coreos_production_pxe-stable-ocata.vmlinuz"
|
|
|
|
# Name of Ironic deployment ramdisk image to register in Glance.
|
|
ipa_images_ramdisk_name: "ipa.initramfs"
|
|
|
|
# URL of Ironic deployment ramdisk image to download.
|
|
ipa_ramdisk_upstream_url: "https://tarballs.openstack.org/ironic-python-agent/coreos/files/coreos_production_pxe_image-oem-stable-ocata.cpio.gz"
|
|
|
|
###############################################################################
|
|
# Ironic Python Agent (IPA) deployment configuration.
|
|
|
|
# List of extra kernel parameters to enable LLDP collection.
|
|
ipa_kernel_options_collect_lldp:
|
|
- "ipa-collect-lldp=1"
|
|
|
|
# List of extra kernel parameters to enable all inspector collectors.
|
|
# NOTE: extra-hardware is not currently included as it requires a ramdisk
|
|
# with the hardware python module installed.
|
|
ipa_kernel_options_inspection_collectors_all:
|
|
- "ipa-inspection-collectors=default,logs,pci-devices"
|
|
|
|
# List of extra kernel parameters to enable all inspector benchmarks.
|
|
ipa_kernel_options_inspection_benchmarks_all:
|
|
- "ipa-inspection-benchmarks=cpu,disk,mem"
|