kayobe/ansible/roles/ntp/tasks/main.yml
Will Szumski 085cf7d175 Adds support for configuring chrony
Some hosts in the kayobe inventory might not be in the kolla-ansible
inventory so it makes sense for kayobe to manage NTP.

Change-Id: Iacb579a46b0e9769a4c404a858d17968f74dd7e0
Depends-On: https://review.opendev.org/c/openstack/kayobe-config-dev/+/786040
Story: 2007872
Task: 40240
2021-05-07 18:27:50 +02:00

13 lines
283 B
YAML

---
- name: Validate configuration
include_tasks: validate.yml
when: '"validate" in ntp_actions'
- name: Pre-deploy preparation
include_tasks: prepare.yml
when: '"prepare" in ntp_actions'
- name: Deploy service
include_tasks: deploy.yml
when: '"deploy" in ntp_actions'