diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/openshift_cfme/tasks/tune_masters.yml | 12 | 
1 files changed, 12 insertions, 0 deletions
| 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 | 
