Role crush when running ansible with python3
Python3 does not have iteritems
method on dict type.
roles/networking/templates/network-script.j2:BONDING_OPTS="{{ _networking_interface.bonding.options.iteritems() | map('join', '=') | join(' ') }}"
we should use method items
instead