diff options
author | Darrian <rikkuness@gmail.com> | 2017-04-12 18:42:32 +0100 |
---|---|---|
committer | Darrian <rikkuness@gmail.com> | 2017-04-12 18:42:32 +0100 |
commit | 10c772b425a801163a4acf2564c7d07c9d48af15 (patch) | |
tree | 22df814c3433b1681dd23921397ff95cab90b26e /roles/openshift_master_facts | |
parent | ba32a0859bbf860895919791928c3acd623eb125 (diff) | |
download | openshift-10c772b425a801163a4acf2564c7d07c9d48af15.tar.gz openshift-10c772b425a801163a4acf2564c7d07c9d48af15.tar.bz2 openshift-10c772b425a801163a4acf2564c7d07c9d48af15.tar.xz openshift-10c772b425a801163a4acf2564c7d07c9d48af15.zip |
Prevent line wrap in yaml dump of IDP, fixes #3912
Diffstat (limited to 'roles/openshift_master_facts')
-rw-r--r-- | roles/openshift_master_facts/filter_plugins/openshift_master.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |