Browse Source

Reconfigure masters in serial to avoid HA meltdowns

Tim Bielawa 7 years ago
parent
commit
de06d1ec79
2 changed files with 14 additions and 16 deletions
  1. 14 0
      playbooks/common/openshift-cfme/config.yml
  2. 0 16
      roles/openshift_cfme/tasks/main.yml

+ 14 - 0
playbooks/common/openshift-cfme/config.yml

@@ -14,6 +14,20 @@
 #     # F-a-f, never check on this. True 'background' task.
 #     poll: 0
 
+- name: Configure Masters for CFME Bulk Image Imports
+  hosts: oo_masters_to_config
+  serial: 1
+  tasks:
+  - name: Run master cfme tuning playbook
+    include_role:
+      name: openshift_cfme
+      tasks_from: tune_masters
+
+  - name: hold up
+    pause:
+      prompt: You just reconfigured that max param bro
+
+
 - name: Setup CFME
   hosts: oo_first_master
   vars:

+ 0 - 16
roles/openshift_cfme/tasks/main.yml

@@ -23,22 +23,6 @@
     state: present
 
 ######################################################################
-# Service settings
-
-- name: Ensure bulk image import limit is tuned
-  yedit:
-    src: /etc/origin/master/master-config.yaml
-    key: 'imagePolicyConfig.maxImagesBulkImportedPerRepository'
-    value: "{{ openshift_cfme_maxImagesBulkImportedPerRepository | int() }}"
-    state: present
-    backup: True
-  register: master_config_updated
-  notify:
-    - restart master
-
-- meta: flush_handlers
-
-######################################################################
 # NFS
 
 - name: Ensure the /exports/ directory exists