test: use ansible 2.9 and python3

This commit is contained in:
Adrien Waksberg 2020-02-12 21:38:41 +01:00
parent d7dff8d9f2
commit b756a7ea4f
2 changed files with 6 additions and 6 deletions

View file

@ -15,13 +15,13 @@ provisioner:
ansible_inventory: ./test/integration/inventory
platforms:
- name: debian-9
- name: debian-10
driver_config:
image: "nishiki/debian9:ansible-<%= ENV['ANSIBLE_VERSION'] ? ENV['ANSIBLE_VERSION'] : '2.7' %>"
image: "nishiki/debian10:ansible-<%= ENV['ANSIBLE_VERSION'] ? ENV['ANSIBLE_VERSION'] : '2.9' %>"
command: /bin/systemd
volume:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
security_opt: seccomp=unconfined
privileged: cap-add=SYS_ADMIN
suites:
- name: default

View file

@ -1,6 +1,6 @@
# {{ ansible_managed }}
{% for option, value in cerebro_full_config.iteritems() %}
{% for option, value in cerebro_full_config.items() %}
{{ option }} = {{ value }}
{% endfor %}
{% if cerebro_auth_type in ['basic', 'ldap'] %}
@ -12,7 +12,7 @@ auth = {
password = {{ cerebro_auth_password }}
{% endif %}
settings {
{% for option, value in cerebro_auth_settings.iteritems() %}
{% for option, value in cerebro_auth_settings.items() %}
{{ option }} = {{ value }}
{% endfor %}
}
@ -31,7 +31,7 @@ hosts = [
}
{% endif %}
{% if 'options' in host %}
{% for option, value in host.options.iteritems() %}
{% for option, value in host.options.items() %}
{{ option }} = {{ value }}
{% endfor %}
{% endif %}