Browse Source

Merge pull request #1330 from jkhelil/make-cli-pod-eviction-timeout-configurable

Make pod_eviction_timeout configurable from cli
Brenton Leanhardt 9 years ago
parent
commit
39fc2154a5
1 changed files with 4 additions and 0 deletions
  1. 4 0
      playbooks/common/openshift-master/config.yml

+ 4 - 0
playbooks/common/openshift-master/config.yml

@@ -18,6 +18,10 @@
     - .config_managed
 
   - set_fact:
+      openshift_master_pod_eviction_timeout: "{{ lookup('oo_option', 'openshift_master_pod_eviction_timeout') | default(none, true) }}"
+    when: openshift_master_pod_eviction_timeout is not defined
+
+  - set_fact:
       openshift_master_etcd_port: "{{ (etcd_client_port | default('2379')) if (groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config) else none }}"
       openshift_master_etcd_hosts: "{{ hostvars
                                        | oo_select_keys(groups['oo_etcd_to_config']