Przeglądaj źródła

Add missing file. Remove debugging prompt.

Tim Bielawa 7 lat temu
rodzic
commit
39e3ae6392

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

@@ -23,11 +23,6 @@
       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:

+ 12 - 0
roles/openshift_cfme/tasks/tune_masters.yml

@@ -0,0 +1,12 @@
+---
+- 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
+  notify:
+    - restart master
+
+- meta: flush_handlers