diff options
-rw-r--r-- | playbooks/common/openshift-cfme/config.yml | 5 | ||||
-rw-r--r-- | roles/openshift_cfme/tasks/tune_masters.yml | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/playbooks/common/openshift-cfme/config.yml b/playbooks/common/openshift-cfme/config.yml index 5887c05ec..533a35d9e 100644 --- a/playbooks/common/openshift-cfme/config.yml +++ b/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: diff --git a/roles/openshift_cfme/tasks/tune_masters.yml b/roles/openshift_cfme/tasks/tune_masters.yml new file mode 100644 index 000000000..02b0f10bf --- /dev/null +++ b/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 |