The new ansible openshift 3.4 installation playbook is very nice.
Just set deploy variables in the inventory and everything will raise from the ground magically…
Well, not immediately tough. Due to this bug you need to:
– downgrade ansible to 2.2.0.0 (the latest is 2.2.1.0)
Or the playbook will try do serialize python objects which are actually strings.
Eg. if your configuration contains:
– name: “MyServer”
Ansible looks for a MyServer() class instead of using str(“MyServer”)