소스 검색

include base_package playbook in glusterfs config and registry playbooks
by means of variables.
This way NTP will be set using timedatectl in all the nodes.

We need NTP to be setup in all nodes (including glusterfs nodes) as
heketi may be running in any of the node.

Signed-off-by: Saravanakumar Arumugam <sarumuga@redhat.com>

Saravanakumar Arumugam 6 년 전
부모
커밋
2405c39b1e

+ 2 - 0
playbooks/openshift-glusterfs/config.yml

@@ -4,5 +4,7 @@
     l_init_fact_hosts: "oo_masters_to_config:oo_glusterfs_to_config"
     l_openshift_version_set_hosts: "oo_masters_to_config:!oo_first_master"
     l_sanity_check_hosts: "{{ groups['oo_masters_to_config'] | union(groups['oo_glusterfs_to_config']) }}"
+    l_install_base_packages: True
+    l_base_packages_hosts: "oo_all_hosts"
 
 - import_playbook: private/config.yml

+ 2 - 0
playbooks/openshift-glusterfs/registry.yml

@@ -4,5 +4,7 @@
     l_init_fact_hosts: "oo_masters_to_config:oo_glusterfs_to_config"
     l_openshift_version_set_hosts: "oo_masters_to_config:!oo_first_master"
     l_sanity_check_hosts: "{{ groups['oo_masters_to_config'] | union(groups['oo_glusterfs_to_config']) }}"
+    l_install_base_packages: True
+    l_base_packages_hosts: "oo_all_hosts"
 
 - import_playbook: private/registry.yml

+ 0 - 9
roles/openshift_storage_glusterfs/tasks/host_services.yml

@@ -2,12 +2,3 @@
 # as per https://access.redhat.com/documentation/en-us/red_hat_gluster_storage/3.3/html/container-native_storage_for_openshift_container_platform/ch06s03
 - name: Ensure systemd has right dependencies
   command: "systemctl add-wants multi-user rpcbind.service"
-
-- name: Enable the NTP service chronyd
-  command: "systemctl add-wants multi-user chronyd.service"
-
-- name: Start chronyd
-  systemd:
-    name: chronyd
-    state: started
-    enabled: yes