From 10c772b425a801163a4acf2564c7d07c9d48af15 Mon Sep 17 00:00:00 2001 From: Darrian Date: Wed, 12 Apr 2017 18:42:32 +0100 Subject: Prevent line wrap in yaml dump of IDP, fixes #3912 --- roles/openshift_master_facts/filter_plugins/openshift_master.py | 1 + 1 file changed, 1 insertion(+) (limited to 'roles/openshift_master_facts') diff --git a/roles/openshift_master_facts/filter_plugins/openshift_master.py b/roles/openshift_master_facts/filter_plugins/openshift_master.py index e570392ff..386f544ea 100644 --- a/roles/openshift_master_facts/filter_plugins/openshift_master.py +++ b/roles/openshift_master_facts/filter_plugins/openshift_master.py @@ -496,6 +496,7 @@ class FilterModule(object): return u(yaml.dump([idp.to_dict() for idp in idp_list], allow_unicode=True, default_flow_style=False, + width=float("inf"), Dumper=AnsibleDumper)) @staticmethod -- cgit v1.2.1