bifrost/playbooks/roles/bifrost-ironic-install/templates/ironic-inspector.conf.j2
Julia Kreger c1f9beac63 Initial support for installation of ironic-inspector
This review adds the ironic-inspector as a component that can be
opted to be installed by the user.  Note, this is moderately useless
without shade support and modules to assist the users to leverage
this workflow.

If a user wishes to utilize at this time before those items exist
then they will have to move nodes in available state back to
manageable state, and then invoke the inspect state which will
return them to manageable state once done.

Change-Id: I7b4ff92fa27578a9a7b0f25fc6e8658c3f2700aa
implements: blueprint bifrost-inspector-support
Depends-On: I27caa1122a72ac655958b7a6aa14b7566964f998
2015-12-01 16:08:55 -05:00

38 lines
1.2 KiB
Django/Jinja

{#
# Note(TheJulia): This file is based upon the file format provided by the git
# committed example located at:
# http://git.openstack.org/cgit/openstack/ironic-inspector/tree/example.conf
#}
[DEFAULT]
auth_strategy = {{ inspector_auth }}
debug = {{ inspector_debug | bool }}
[database]
connection=sqlite:///{{ inspector_data_dir }}/inspector.sqlite
[firewall]
manage_firewall = {{ inspector_manage_firewall | bool }}
[ironic]
auth_strategy = {{ ironic_auth_strategy }}
{#
# Note(TheJulia) preserving ironic_url in the configuration
# in case future changes allow breaking of the deployment across
# multiple nodes.
#ironic_url = http://localhost:6385/
#}
[processing]
add_ports = {{ inspector_port_addition | default('pxe') }}
keep_ports = {{ inspector_keep_ports | default('present') }}
ramdisk_logs_dir = {{ inspector_data_dir }}/log
always_store_ramdisk_logs = {{ inspector_store_ramdisk_logs | default('true') | bool }}
{#
# Note(TheJulia): Preserving node_not_found_hook for potential future
# use by bifrost.
# The name of the hook to run when inspector receives inspection
# information from a node it isn't already aware of. This hook is
# ignored by default. (string value)
#node_not_found_hook = <None>
#}