test: fix missing space for ansible-lint

This commit is contained in:
Adrien Waksberg 2023-01-13 14:25:37 +01:00
parent cf09b5d98e
commit f2e0fc4c0e
2 changed files with 6 additions and 14 deletions

View file

@ -2,14 +2,6 @@
driver:
name: docker
platforms:
- name: debian10
image: nishiki/debian10:molecule
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
command: /bin/systemd
capabilities:
- SYS_ADMIN
- name: debian11
image: nishiki/debian11:molecule
privileged: true

View file

@ -70,9 +70,9 @@
- name: install official plugins
community.grafana.grafana_plugin:
name: '{{ item.name }}'
version: '{{ item.version|default("latest") }}'
state: '{{ item.state|default("present") }}'
loop: '{{ grafana_plugins|selectattr("url", "undefined") }}'
version: '{{ item.version | default("latest") }}'
state: '{{ item.state | default("present") }}'
loop: '{{ grafana_plugins | selectattr("url", "undefined") }}'
loop_control:
label: '{{ item.name }}'
notify: restart grafana
@ -82,9 +82,9 @@
community.grafana.grafana_plugin:
name: '{{ item.name }}'
grafana_plugin_url: '{{ item.url }}'
version: '{{ item.version|default("latest") }}'
state: '{{ item.state|default("present") }}'
loop: '{{ grafana_plugins|selectattr("url", "defined") }}'
version: '{{ item.version | default("latest") }}'
state: '{{ item.state | default("present") }}'
loop: '{{ grafana_plugins | selectattr("url", "defined") }}'
loop_control:
label: '{{ item.name }}'
notify: restart grafana