summaryrefslogtreecommitdiffstats
path: root/roles/openshift_common
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-03-02 11:19:04 -0500
committerJason DeTiberus <jdetiber@redhat.com>2015-03-02 11:19:06 -0500
commit00d33ccc0f22e81ee471188ffabe9f3bea1f0244 (patch)
treec031720cf43a851dc4f950d185ea90286a35e257 /roles/openshift_common
parente55ef121003649cfe72bb51c6d51a492898f328a (diff)
downloadopenshift-00d33ccc0f22e81ee471188ffabe9f3bea1f0244.tar.gz
openshift-00d33ccc0f22e81ee471188ffabe9f3bea1f0244.tar.bz2
openshift-00d33ccc0f22e81ee471188ffabe9f3bea1f0244.tar.xz
openshift-00d33ccc0f22e81ee471188ffabe9f3bea1f0244.zip
Prefer YAML style datastructures over JSON
- Switch JSON style datastructures to YAML for debuggability
Diffstat (limited to 'roles/openshift_common')
-rw-r--r--roles/openshift_common/tasks/main.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/roles/openshift_common/tasks/main.yml b/roles/openshift_common/tasks/main.yml
index cfa0d8dfe..988b36306 100644
--- a/roles/openshift_common/tasks/main.yml
+++ b/roles/openshift_common/tasks/main.yml
@@ -9,9 +9,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: