diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-03-02 15:43:23 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-03-02 15:43:23 -0500 |
commit | 5a3b4171f364ed05d8f9c630467938b6fdd60f64 (patch) | |
tree | 22a51589ba319bff341cc777484384589348d087 /roles/openshift_common/tasks | |
parent | 777c55516c0c122ff828ce54268866a17b29c5bb (diff) | |
parent | 00d33ccc0f22e81ee471188ffabe9f3bea1f0244 (diff) | |
download | openshift-5a3b4171f364ed05d8f9c630467938b6fdd60f64.tar.gz openshift-5a3b4171f364ed05d8f9c630467938b6fdd60f64.tar.bz2 openshift-5a3b4171f364ed05d8f9c630467938b6fdd60f64.tar.xz openshift-5a3b4171f364ed05d8f9c630467938b6fdd60f64.zip |
Merge pull request #91 from detiber/downWithJSON
Prefer YAML style datastructures over JSON
Diffstat (limited to 'roles/openshift_common/tasks')
-rw-r--r-- | roles/openshift_common/tasks/main.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/roles/openshift_common/tasks/main.yml b/roles/openshift_common/tasks/main.yml index f72beb65b..b94fca690 100644 --- a/roles/openshift_common/tasks/main.yml +++ b/roles/openshift_common/tasks/main.yml @@ -10,9 +10,15 @@ - name: Set common OpenShift facts include: set_facts.yml facts: - - { section: common, option: env, value: "{{ openshift_env | default('default') }}" } - - { section: common, option: host_type, value: "{{ openshift_host_type }}" } - - { section: common, option: debug_level, value: "{{ openshift_debug_level }}" } + - section: common + option: env + value: "{{ openshift_env | default('default') }}" + - section: common + option: host_type + value: "{{ openshift_host_type }}" + - section: common + option: debug_level + value: "{{ openshift_debug_level }}" - name: Add KUBECONFIG to .bash_profile for user root lineinfile: |