From bc65fa51b2233b387f73c5321ac05be5715e7999 Mon Sep 17 00:00:00 2001 From: caoyuan Date: Mon, 25 Dec 2017 22:40:45 +0800 Subject: [PATCH] Enable chrony container by default Since chrony container is supported by kolla [1], we should enable it by default. [1] https://github.com/openstack/kolla-ansible/tree/master/ansible/roles/chrony Change-Id: I1fd4dcae8da4e807b8eaefa65607671bf7a9a19a --- ansible/group_vars/all.yml | 2 +- etc/kolla/globals.yml | 2 +- releasenotes/notes/enable-chrony-default-g6595d27c034f8cc.yaml | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/enable-chrony-default-g6595d27c034f8cc.yaml diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index e85abdc117..78d6fe2a6e 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -414,7 +414,7 @@ enable_ceph_mds: "no" enable_ceph_rgw: "no" enable_ceph_nfs: "no" enable_ceph_dashboard: "{{ enable_ceph | bool }}" -enable_chrony: "no" +enable_chrony: "yes" enable_cinder: "no" enable_cinder_backup: "yes" enable_cinder_backend_hnas_iscsi: "no" diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index eff4104acb..aa0f000a10 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -151,7 +151,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_ceph_rgw: "no" #enable_ceph_nfs: "no" #enable_ceph_dashboard: "{{ enable_ceph | bool }}" -#enable_chrony: "no" +#enable_chrony: "yes" #enable_cinder: "no" #enable_cinder_backup: "yes" #enable_cinder_backend_hnas_iscsi: "no" diff --git a/releasenotes/notes/enable-chrony-default-g6595d27c034f8cc.yaml b/releasenotes/notes/enable-chrony-default-g6595d27c034f8cc.yaml new file mode 100644 index 0000000000..e7bc2d19ef --- /dev/null +++ b/releasenotes/notes/enable-chrony-default-g6595d27c034f8cc.yaml @@ -0,0 +1,3 @@ +--- +features: + - enable chrony by default.