test: fix missing space for ansible-lint
This commit is contained in:
parent
cf09b5d98e
commit
f2e0fc4c0e
2 changed files with 6 additions and 14 deletions
|
@ -2,14 +2,6 @@
|
||||||
driver:
|
driver:
|
||||||
name: docker
|
name: docker
|
||||||
platforms:
|
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
|
- name: debian11
|
||||||
image: nishiki/debian11:molecule
|
image: nishiki/debian11:molecule
|
||||||
privileged: true
|
privileged: true
|
||||||
|
|
|
@ -70,9 +70,9 @@
|
||||||
- name: install official plugins
|
- name: install official plugins
|
||||||
community.grafana.grafana_plugin:
|
community.grafana.grafana_plugin:
|
||||||
name: '{{ item.name }}'
|
name: '{{ item.name }}'
|
||||||
version: '{{ item.version|default("latest") }}'
|
version: '{{ item.version | default("latest") }}'
|
||||||
state: '{{ item.state|default("present") }}'
|
state: '{{ item.state | default("present") }}'
|
||||||
loop: '{{ grafana_plugins|selectattr("url", "undefined") }}'
|
loop: '{{ grafana_plugins | selectattr("url", "undefined") }}'
|
||||||
loop_control:
|
loop_control:
|
||||||
label: '{{ item.name }}'
|
label: '{{ item.name }}'
|
||||||
notify: restart grafana
|
notify: restart grafana
|
||||||
|
@ -82,9 +82,9 @@
|
||||||
community.grafana.grafana_plugin:
|
community.grafana.grafana_plugin:
|
||||||
name: '{{ item.name }}'
|
name: '{{ item.name }}'
|
||||||
grafana_plugin_url: '{{ item.url }}'
|
grafana_plugin_url: '{{ item.url }}'
|
||||||
version: '{{ item.version|default("latest") }}'
|
version: '{{ item.version | default("latest") }}'
|
||||||
state: '{{ item.state|default("present") }}'
|
state: '{{ item.state | default("present") }}'
|
||||||
loop: '{{ grafana_plugins|selectattr("url", "defined") }}'
|
loop: '{{ grafana_plugins | selectattr("url", "defined") }}'
|
||||||
loop_control:
|
loop_control:
|
||||||
label: '{{ item.name }}'
|
label: '{{ item.name }}'
|
||||||
notify: restart grafana
|
notify: restart grafana
|
||||||
|
|
Loading…
Reference in a new issue