f639ad0b35
By default, Ansible injects a variable for every fact, prefixed with ansible_. This can result in a large number of variables for each host, which at scale can incur a performance penalty. Ansible provides a configuration option [0] that can be set to False to prevent this injection of facts. In this case, facts should be referenced via ansible_facts.<fact>. This change updates all references to Ansible facts within Kayobe from using individual fact variables to using the items in the ansible_facts dictionary. This allows users to disable fact variable injection in their Ansible configuration, which may provide some performance improvement. This change disables fact variable injection in the ansible configuration used in CI, to catch any attempts to use the injected variables. [0] https://docs.ansible.com/ansible/latest/reference_appendices/config.html#inject-facts-as-vars Story: 2007993 Task: 42464 Depends-On: https://review.opendev.org/c/openstack/kolla-ansible/+/791276 Change-Id: I14db53ed6e57d37bbd28dd5819e432e3fe6628b2
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
---
|
|
# Kayobe time configuration.
|
|
|
|
###############################################################################
|
|
# Timezone.
|
|
|
|
# Name of the local timezone.
|
|
timezone: "{{ ansible_facts.date_time.tz }}"
|
|
|
|
###############################################################################
|
|
# Network Time Protocol (NTP).
|
|
|
|
# List of NTP time sources to configure. Format is a list of dictionaries with
|
|
# the following keys:
|
|
# server: host or pool
|
|
# type: (Optional) Defaults to server. Maps to a time source in the
|
|
# configuration file. Can be one of server, peer, pool.
|
|
# options: (Optional) List of options that depends on type, see Chrony
|
|
# documentation for details.
|
|
# See: https://chrony.tuxfamily.org/doc/4.0/chrony.conf.html
|
|
#
|
|
# Example of configuring a pool and customising the pool specific maxsources
|
|
# option:
|
|
# chrony_ntp_servers:
|
|
# - server: pool.ntp.org
|
|
# type: pool
|
|
# options:
|
|
# - option: maxsources
|
|
# val: 3
|
|
#
|
|
chrony_ntp_servers:
|
|
- server: pool.ntp.org
|
|
type: pool
|
|
options:
|
|
- option: iburst
|
|
- option: minpoll
|
|
val: 8
|