Browse Source

Merge pull request #8743 from vrutkovs/sync-after-configmaps

Sync daemonset should start after node configmaps are created to avoid race conditions
OpenShift Merge Robot 6 years ago
parent
commit
c737a0de7e
1 changed files with 10 additions and 5 deletions
  1. 10 5
      playbooks/openshift-master/private/config.yml

+ 10 - 5
playbooks/openshift-master/private/config.yml

@@ -104,11 +104,6 @@
   - role: calico_master
     when: openshift_use_calico | default(false) | bool
   tasks:
-  - name: Set up automatic node config reconcilation
-    run_once: True
-    import_role:
-      name: openshift_node_group
-      tasks_from: sync
   - import_role:
       name: kuryr
       tasks_from: master
@@ -134,6 +129,16 @@
   - name: setup bootstrap settings
     import_tasks: tasks/enable_bootstrap_config.yml
 
+- name: Create sync daemonset
+  hosts: oo_first_master
+  gather_facts: no
+  tasks:
+  - name: Set up automatic node config reconcilation
+    run_once: True
+    import_role:
+      name: openshift_node_group
+      tasks_from: sync
+
 - name: Ensure inventory labels are assigned to masters
   hosts: oo_masters_to_config
   gather_facts: no