Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions roles/hosted_engine_setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Ansible version >= 2.9.21 and < 2.10.0
| he_bridge_if | null | interface used for the management bridge |
| he_force_ip4 | false | Force resolving engine FQDN to ipv4 only using DNS server |
| he_force_ip6 | false | Force resolving engine FQDN to ipv6 only using DNS server |
| he_apply_repositories_role | false | apply the repositories role to the HE VM |
| he_apply_openscap_profile | false | Apply an OpenSCAP security profile on HE VM |
| he_openscap_profile_name | stig | OpenSCAP profile name, available options: *stig*, *pci-dss*. Requires `he_apply_openscap_profile` to be `True` |
| he_enable_fips | false | Enable FIPS on HE VM |
Expand Down
1 change: 1 addition & 0 deletions roles/hosted_engine_setup/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ he_local_vm_dir_prefix: localvm
he_appliance_ova: ''
he_root_ssh_pubkey: ''
he_root_ssh_access: 'yes'
he_apply_repositories_role: false
he_apply_openscap_profile: false
he_openscap_profile_name: stig
he_enable_fips: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
with_items:
- "OVESETUP_DWH_DB/password=str:{{ he_dwh_db_password }}"
when: he_dwh_db_password is defined
- name: Setup Repositories on Local VM
import_role:
name: @NAMESPACE@.@[email protected]
when: he_apply_repositories_role|bool
- name: Enable security policy
block:
- import_tasks: ../get_appliance_dist.yml
Expand Down