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
34 lines
694 B
YAML
34 lines
694 B
YAML
---
|
|
- name: Ensure timezone is configured
|
|
hosts: seed-hypervisor:seed:overcloud:infra-vms
|
|
tags:
|
|
- timezone
|
|
tasks:
|
|
- import_role:
|
|
name: stackhpc.timezone
|
|
become: True
|
|
|
|
- name: Ensure ntp group exists
|
|
hosts: all
|
|
gather_facts: no
|
|
tags:
|
|
- ntp
|
|
tasks:
|
|
- name: Ensure ntp group exists
|
|
fail:
|
|
msg: >-
|
|
The 'ntp' group does not exist in the Ansible inventory.
|
|
run_once: true
|
|
when:
|
|
- "'ntp' not in groups"
|
|
- not kolla_enable_chrony | bool
|
|
|
|
- name: Ensure Chrony is installed and configured
|
|
hosts: ntp
|
|
tags:
|
|
- ntp
|
|
tasks:
|
|
- import_role:
|
|
name: ntp
|
|
when: not kolla_enable_chrony | bool
|