summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cfme/tasks/tune_masters.yml
blob: 02b0f10bf88a1898f28fc35647c0bc12925876ac (plain)
1
2
3
4
5
6
7
8
9
10
11
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