diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 09:00:07 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 09:00:07 -0400 |
commit | c8f5f05df668eaa6502b17fed9dc8099e7fab258 (patch) | |
tree | a7f28710e0c2c599c7c914084d3fb1849bf9226a /roles/openshift_master/tasks | |
parent | c818db9b485b19256e1c19573cd0640fdabcb109 (diff) | |
parent | ccc5a30e00144bdb7a9cc2339aa2cb65defdb230 (diff) | |
download | openshift-c8f5f05df668eaa6502b17fed9dc8099e7fab258.tar.gz openshift-c8f5f05df668eaa6502b17fed9dc8099e7fab258.tar.bz2 openshift-c8f5f05df668eaa6502b17fed9dc8099e7fab258.tar.xz openshift-c8f5f05df668eaa6502b17fed9dc8099e7fab258.zip |
Merge pull request #1680 from detiber/scheduler_config
Allow for overriding scheduler config
Diffstat (limited to 'roles/openshift_master/tasks')
-rw-r--r-- | roles/openshift_master/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 79b68dc3c..23994cdcf 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -65,9 +65,9 @@ - restart master controllers - name: Create the scheduler config - template: + copy: + content: "{{ scheduler_config | to_nice_json }}" dest: "{{ openshift_master_scheduler_conf }}" - src: scheduler.json.j2 backup: true notify: - restart master |