-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! fix linting with ansible-lint write
- Loading branch information
Showing
58 changed files
with
1,555 additions
and
1,520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
namespace: community | ||
name: grafana | ||
version: 1.6.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
requires_ansible: '>=2.9.0' | ||
requires_ansible: ">=2.9.0" | ||
action_groups: | ||
grafana: | ||
- grafana_dashboard | ||
|
6 changes: 3 additions & 3 deletions
6
tests/integration/targets/grafana_dashboard/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
--- | ||
grafana_url: "http://grafana:3000/" | ||
grafana_username: "admin" | ||
grafana_password: "admin" | ||
grafana_url: http://grafana:3000/ | ||
grafana_username: admin | ||
grafana_password: admin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 10 additions & 5 deletions
15
tests/integration/targets/grafana_dashboard/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
--- | ||
- name: Create dashboard from url | ||
ansible.builtin.include_tasks: dashboard-from-url.yml | ||
ansible.builtin.include_tasks: | ||
file: dashboard-from-url.yml | ||
|
||
- name: Create dashboard from id | ||
ansible.builtin.include_tasks: dashboard-from-id.yml | ||
ansible.builtin.include_tasks: | ||
file: dashboard-from-id.yml | ||
|
||
- name: Create dashboard from file and export | ||
ansible.builtin.include_tasks: dashboard-from-file-export.yml | ||
ansible.builtin.include_tasks: | ||
file: dashboard-from-file-export.yml | ||
|
||
- name: Create dashboard from file by org_name | ||
ansible.builtin.include_tasks: dashboard-by-org-name.yml | ||
ansible.builtin.include_tasks: | ||
file: dashboard-by-org-name.yml | ||
|
||
- name: Create dashboard in non existing folder | ||
ansible.builtin.include_tasks: dashboard-folder-destination.yml | ||
ansible.builtin.include_tasks: | ||
file: dashboard-folder-destination.yml |
8 changes: 3 additions & 5 deletions
8
tests/integration/targets/grafana_datasource/defaults/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
--- | ||
|
||
grafana_url: "http://grafana:3000/" | ||
grafana_username: "admin" | ||
grafana_password: "admin" | ||
|
||
... | ||
grafana_url: http://grafana:3000/ | ||
grafana_username: admin | ||
grafana_password: admin |
Oops, something went wrong.