f349038b1d
The epel-release package provides a yum repository configuration for EPEL, and points to the upstream EPEL mirrors. In some cases this is undesirable, such as when a local EPEL mirror is available, or access to the public repositories is not possible. This change makes it possible to skip installation of epel-release, by setting 'yum_install_epel' to 'false'. Change-Id: Ib685b0c3e21df01c4dd177771f019fae4bb90e66 Story: 2003277 Task: 24218
21 lines
1.0 KiB
YAML
21 lines
1.0 KiB
YAML
---
|
|
- name: Ensure introspection rules are registered in Bifrost
|
|
hosts: seed
|
|
tags:
|
|
- introspection-rules
|
|
roles:
|
|
- role: ironic-inspector-rules
|
|
os_shade_install_epel: "{{ yum_install_epel }}"
|
|
ironic_inspector_venv: "{{ virtualenv_path }}/shade"
|
|
# No auth required for Bifrost.
|
|
ironic_inspector_auth_type: None
|
|
ironic_inspector_auth: {}
|
|
ironic_inspector_url: "http://localhost:5050"
|
|
ironic_inspector_rules: "{{ kolla_bifrost_inspector_rules }}"
|
|
# These variables may be referenced in the introspection rules.
|
|
inspector_rule_var_ipmi_username: "{{ kolla_bifrost_inspector_ipmi_username }}"
|
|
inspector_rule_var_ipmi_password: "{{ kolla_bifrost_inspector_ipmi_password }}"
|
|
inspector_rule_var_lldp_switch_port_interface: "{{ kolla_bifrost_inspector_lldp_switch_port_interface }}"
|
|
inspector_rule_var_deploy_kernel: "{{ kolla_bifrost_inspector_deploy_kernel }}"
|
|
inspector_rule_var_deploy_ramdisk: "{{ kolla_bifrost_inspector_deploy_ramdisk }}"
|