Add Note to modules which don't support Idempotency
This commit is contained in:
parent
8bf0298bc1
commit
05d7af3c6c
@ -5,6 +5,19 @@ Grafana.Grafana Release Notes
|
||||
.. contents:: Topics
|
||||
|
||||
|
||||
v1.0.5
|
||||
======
|
||||
|
||||
Release Summary
|
||||
---------------
|
||||
|
||||
Add Note to modules which don't support Idempotency
|
||||
|
||||
Minor Changes
|
||||
-------------
|
||||
|
||||
- Added Note to datasource and dashboard module about not supporting Idempotency
|
||||
|
||||
v1.0.4
|
||||
======
|
||||
|
||||
|
@ -98,7 +98,7 @@ We plan to regularly release new minor or bugfix versions once new features or b
|
||||
Releasing the current major version on GitHub happens from the `main` branch by the [GitHub Release Workflow](https://github.com/grafana/grafana-ansible-collection/blob/main/.github/workflows/release.yml)
|
||||
Before the [GitHub Release Workflow](https://github.com/grafana/grafana-ansible-collection/blob/main/.github/workflows/release.yml) is run, Contributors should push the new version on Ansible Galaxy Manually.
|
||||
|
||||
We currently are not planning any deprecations or new major releases. The current landscape includes minor version updates for Module's documentation in 1.0.5.
|
||||
We currently are not planning any deprecations or new major releases. The current landscape includes minor version updates for Module's documentation in 1.0.6.
|
||||
|
||||
## Code of Conduct
|
||||
This collection follows the Ansible project's [Code of Conduct](https://docs.ansible.com/ansible/devel/community/code_of_conduct.html). Please read and familiarize yourself with this doc
|
||||
|
@ -53,4 +53,4 @@ plugins:
|
||||
shell: {}
|
||||
strategy: {}
|
||||
vars: {}
|
||||
version: 1.0.4
|
||||
version: 1.0.5
|
||||
|
@ -63,3 +63,9 @@ releases:
|
||||
when required library is missing from host
|
||||
release_summary: Bug fixes and idempotency fixes for modules
|
||||
release_date: '2022-11-01'
|
||||
1.0.5:
|
||||
changes:
|
||||
minor_changes:
|
||||
- Added Note to datasource and dashboard module about not supporting Idempotency
|
||||
release_summary: Add Note to modules which don't support Idempotency
|
||||
release_date: '2022-11-10'
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace: grafana
|
||||
name: grafana
|
||||
version: 1.0.4
|
||||
version: 1.0.5
|
||||
readme: README.md
|
||||
authors:
|
||||
- Grafana Labs <grafana.com>
|
||||
|
@ -18,6 +18,7 @@ description:
|
||||
requirements: [ "requests >= 1.0.0" ]
|
||||
notes:
|
||||
- Does not support C(check_mode).
|
||||
- Does not support C(Idempotency).
|
||||
options:
|
||||
dashboard:
|
||||
description:
|
||||
|
@ -18,6 +18,7 @@ description:
|
||||
requirements: [ "requests >= 1.0.0" ]
|
||||
notes:
|
||||
- Does not support C(check_mode).
|
||||
- Does not support C(Idempotency).
|
||||
options:
|
||||
dataSource:
|
||||
description:
|
||||
|
@ -1,7 +1,7 @@
|
||||
- name: Create a Grafana Cloud stack
|
||||
grafana.grafana.cloud_stack:
|
||||
name: ansiblestack
|
||||
stack_slug: ansiblestack
|
||||
name: ansiblestacktest
|
||||
stack_slug: ansiblestacktest
|
||||
cloud_api_key: "{{ grafana_cloud_api_key }}"
|
||||
org_slug: "{{ org_name }}"
|
||||
state: present
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- create_result.url == "https://ansiblestack.grafana.net"
|
||||
- create_result.url == "https://ansiblestacktest.grafana.net"
|
||||
|
||||
- name: Sleep for 30 seconds
|
||||
ansible.builtin.wait_for:
|
||||
@ -17,8 +17,8 @@
|
||||
|
||||
- name: Delete a Grafana Cloud stack
|
||||
grafana.grafana.cloud_stack:
|
||||
name: ansiblestack
|
||||
stack_slug: ansiblestack
|
||||
name: ansiblestacktest
|
||||
stack_slug: ansiblestacktest
|
||||
cloud_api_key: "{{ grafana_cloud_api_key }}"
|
||||
org_slug: "{{ org_name }}"
|
||||
state: absent
|
||||
@ -27,4 +27,4 @@
|
||||
- assert:
|
||||
that:
|
||||
- delete_result.changed == true
|
||||
- delete_result.url == "https://ansiblestack.grafana.net"
|
||||
- delete_result.url == "https://ansiblestacktest.grafana.net"
|
||||
|
Loading…
Reference in New Issue
Block a user