Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for repository rpms in HE setup #184

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
kresss marked this conversation as resolved.
Show resolved Hide resolved
- name: Enable security policy
block:
- import_tasks: ../get_appliance_dist.yml
Expand Down