tripleo-ansible/tripleo_ansible/roles/tripleo_timemaster/defaults/main.yml

35 lines
1.7 KiB
YAML

---
# Copyright 2020 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# All variables intended for modification should be placed in this file.
# All variables within this role should have a prefix of "tripleo_timemaster"
tripleo_timemaster_role_action: all
tripleo_timemaster_manage_service: true
tripleo_timemaster_service_state: started
tripleo_timemaster_global_server_settings: "{{ chrony_global_server_settings | default('iburst') }}"
tripleo_timemaster_ntp_servers: "{{ chrony_ntp_servers | default([]) }}"
tripleo_timemaster_ntp_pools: "{{ chrony_ntp_pools | default(['pool.ntp.org']) }}"
tripleo_timemaster_ntp_peers: "{{ chrony_ntp_peers | default([]) }}"
tripleo_timemaster_bind_addresses: "{{ chrony_bind_addresses | default(['127.0.0.1','::1']) }}"
tripleo_timemaster_acl_rules: "{{ chrony_acl_rules | default([]) }}"
tripleo_timemaster_extra_options: "{{ chrony_extra_options | default([]) }}"
tripleo_timemaster_makestep: "{{ chrony_makestep | default('1.0 3') }}"
tripleo_timemaster_rtc_settings: "{{ chrony_rtc_settings | default('rtcsync') }}"
tripleo_timemaster_ptpinterfaces: "{{ ptp_interfaces | default('') }}"
tripleo_timemaster_ptptransport: "{{ ptp_transport | default('') }}"