This repository was archived by the owner on May 31, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +32
-15
lines changed
Expand file tree Collapse file tree 3 files changed +32
-15
lines changed Original file line number Diff line number Diff line change 88 - " {{ ansible_distribution | lower }}.yml"
99 - " {{ ansible_os_family | lower }}.yml"
1010 tags :
11- - always
11+ - grafana_install
12+ - grafana_configure
13+ - grafana_datasources
14+ - grafana_notifications
15+ - grafana_dashboards
1216
1317- include : preflight.yml
1418 tags :
15- - always
19+ - grafana_install
20+ - grafana_configure
21+ - grafana_datasources
22+ - grafana_notifications
23+ - grafana_dashboards
1624
1725- include : install.yml
1826 become : true
1927 tags :
20- - install
28+ - grafana_install
2129
2230- include : configure.yml
2331 become : true
2432 tags :
25- - configure
33+ - grafana_configure
2634
2735- include : plugins.yml
2836 when : grafana_plugins != []
2937 tags :
30- - configure
38+ - grafana_configure
3139
3240- name : Restart grafana before configuring datasources and dashboards
3341 meta : flush_handlers
3442 tags :
35- - always
43+ - grafana_install
44+ - grafana_configure
45+ - grafana_datasources
46+ - grafana_notifications
47+ - grafana_dashboards
3648
3749- name : Wait for grafana to start
3850 wait_for :
3951 host : " {{ grafana_address }}"
4052 port : " {{ grafana_port }}"
4153 tags :
42- - always
54+ - grafana_install
55+ - grafana_configure
56+ - grafana_datasources
57+ - grafana_notifications
58+ - grafana_dashboards
4359
4460- include : api_keys.yml
4561 when : grafana_api_keys | length > 0
4662 tags :
47- - configure
63+ - grafana_configure
4864
4965- include : datasources.yml
5066 when : grafana_datasources != []
5167 tags :
52- - configure
53- - datasources
68+ - grafana_configure
69+ - grafana_datasources
5470
5571- include : notifications.yml
5672 when : grafana_alert_notifications | length > 0
5773 tags :
58- - configure
59- - notifications
74+ - grafana_configure
75+ - grafana_notifications
6076
6177- include : dashboards.yml
6278 tags :
63- - configure
64- - dashboards
79+ - grafana_configure
80+ - grafana_dashboards
Original file line number Diff line number Diff line change 33ansible-lint>=3.4.0
44testinfra>=1.7.0
55jmespath
6+ pytest==3.9.3
Original file line number Diff line number Diff line change 1717 ansible26: ansible<2.7
1818 ansible27: ansible<2.8
1919commands =
20- {posargs:molecule test --all --destroy always}
20+ {posargs:molecule test --all --destroy = always}
You can’t perform that action at this time.
0 commit comments