From 00d33ccc0f22e81ee471188ffabe9f3bea1f0244 Mon Sep 17 00:00:00 2001 From: Jason DeTiberus Date: Mon, 2 Mar 2015 11:19:04 -0500 Subject: Prefer YAML style datastructures over JSON - Switch JSON style datastructures to YAML for debuggability --- roles/openshift_common/tasks/main.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'roles/openshift_common/tasks') 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: -- cgit v1.2.3