grafana-ansible-collection/tests/integration/targets/cloud_plugin/tasks/main.yml

61 lines
1.5 KiB
YAML
Raw Normal View History

2023-03-03 09:53:02 +01:00
---
- name: Add a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.14
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: add_result
2023-03-03 09:53:02 +01:00
- name: Add Check
ansible.builtin.assert:
that:
- add_result.changed == true
- add_result.pluginName == "GitHub"
- name: Idempotency Check
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.14
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: idempotency_result
2023-03-03 09:53:02 +01:00
- name: Idempotency Check
ansible.builtin.assert:
that:
- idempotency_result.changed == false
- idempotency_result.pluginName == "GitHub"
- name: Update a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.15
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: present
register: update_result
2023-03-03 09:53:02 +01:00
- name: Update Check
ansible.builtin.assert:
that:
- update_result.changed == true
- update_result.pluginName == "GitHub"
- name: Delete a plugin
grafana.grafana.cloud_plugin:
name: grafana-github-datasource
version: 1.0.15
stack_slug: "{{ stack_name }}"
cloud_api_key: "{{ grafana_cloud_api_key }}"
state: absent
register: delete_result
2023-03-03 09:53:02 +01:00
- name: Delete Check
ansible.builtin.assert:
that:
- delete_result.changed == true
2023-03-03 09:53:02 +01:00
- delete_result.pluginName == "GitHub"