c583922c27
This change allows you to define additional VMs to deploy on the seed-hypervisor. Co-authored-by: Piotr Parczewski <piotr@stackhpc.com> Co-authored-by: Will Szumski <will@stackhpc.com> Co-authored-by: Mark Goddard <mark@stackhpc.com> Story: 2008741 Task: 42095 Change-Id: I8055fc5eb0a9edadcb35767303c659922f2d07ca
18 lines
393 B
YAML
18 lines
393 B
YAML
---
|
|
- name: Ensure DNF repos are configured
|
|
hosts: seed-hypervisor:seed:overcloud:infra-vms
|
|
vars:
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
tags:
|
|
- dnf
|
|
tasks:
|
|
- block:
|
|
- import_role:
|
|
name: dnf
|
|
- import_role:
|
|
name: dnf-automatic
|
|
tags:
|
|
- dnf-automatic
|
|
when:
|
|
- ansible_facts.os_family == 'RedHat'
|