Add volume_snapshot_info module
Change-Id: I4edc34639f17adb97dd055fcdeec14ea92acb9bd
This commit is contained in:
parent
a39470ac2b
commit
d416a27112
@ -8,6 +8,20 @@
|
||||
display_description: Test volume
|
||||
register: vol
|
||||
|
||||
- name: Create volume snapshot
|
||||
openstack.cloud.volume_snapshot:
|
||||
cloud: "{{ cloud }}"
|
||||
state: present
|
||||
display_name: ansible_volume_snapshot
|
||||
volume: ansible_volume
|
||||
register: vol_snap
|
||||
|
||||
- name: Get snapshot info
|
||||
openstack.cloud.volume_snapshot_info:
|
||||
cloud: "{{ cloud }}"
|
||||
name: ansible_volume_snapshot
|
||||
register: snap_info
|
||||
|
||||
- name: Create volume backup
|
||||
openstack.cloud.volume_backup:
|
||||
cloud: "{{ cloud }}"
|
||||
@ -28,12 +42,21 @@
|
||||
|
||||
- debug: var=backup_info
|
||||
|
||||
- debug: var=snap_info
|
||||
|
||||
- name: Delete volume backup
|
||||
openstack.cloud.volume_backup:
|
||||
cloud: "{{ cloud }}"
|
||||
display_name: ansible_volume_backup
|
||||
state: absent
|
||||
|
||||
- name: Delete volume snapshot
|
||||
openstack.cloud.volume_snapshot:
|
||||
cloud: "{{ cloud }}"
|
||||
display_name: ansible_volume_snapshot
|
||||
volume: ansible_volume
|
||||
state: absent
|
||||
|
||||
- name: Delete volume
|
||||
openstack.cloud.volume:
|
||||
cloud: "{{ cloud }}"
|
||||
|
@ -92,6 +92,7 @@ action_groups:
|
||||
- volume_backup_info
|
||||
- volume_info
|
||||
- volume_snapshot
|
||||
- volume_snapshot_info
|
||||
os:
|
||||
- auth
|
||||
- baremetal_inspect
|
||||
@ -185,6 +186,7 @@ action_groups:
|
||||
- volume_backup_info
|
||||
- volume_info
|
||||
- volume_snapshot
|
||||
- volume_snapshot_info
|
||||
- os_auth
|
||||
- os_client_config
|
||||
- os_client_config
|
||||
|
131
plugins/modules/volume_snapshot_info.py
Normal file
131
plugins/modules/volume_snapshot_info.py
Normal file
@ -0,0 +1,131 @@
|
||||
#!/usr/bin/python
|
||||
# coding: utf-8 -*-
|
||||
#
|
||||
# Copyright (c) 2020 by Open Telekom Cloud, operated by T-Systems International GmbH
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: volume_snapshot_info
|
||||
short_description: Get volume snapshots
|
||||
author: OpenStack Ansible SIG
|
||||
description:
|
||||
- Get Volume Snapshot info from the Openstack cloud.
|
||||
options:
|
||||
details:
|
||||
description: More detailed output
|
||||
type: bool
|
||||
default: True
|
||||
name:
|
||||
description:
|
||||
- Name of the Snapshot.
|
||||
type: str
|
||||
volume:
|
||||
description:
|
||||
- Name of the volume.
|
||||
type: str
|
||||
status:
|
||||
description:
|
||||
- Specifies the snapshot status.
|
||||
choices: [creating, available, error, deleting,
|
||||
error_deleting, rollbacking, backing-up]
|
||||
type: str
|
||||
requirements: ["openstacksdk"]
|
||||
extends_documentation_fragment:
|
||||
- openstack.cloud.openstack
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
volume_snapshots:
|
||||
description: List of dictionaries describing volume snapshots.
|
||||
type: list
|
||||
elements: dict
|
||||
returned: always.
|
||||
contains:
|
||||
created_at:
|
||||
description: Snapshot creation time.
|
||||
type: str
|
||||
description:
|
||||
description: Snapshot desciption.
|
||||
type: str
|
||||
id:
|
||||
description: Unique UUID.
|
||||
type: str
|
||||
sample: "39007a7e-ee4f-4d13-8283-b4da2e037c69"
|
||||
metadata:
|
||||
description: Snapshot metadata.
|
||||
type: dict
|
||||
name:
|
||||
description: Snapshot Name.
|
||||
type: str
|
||||
status:
|
||||
description: Snapshot status.
|
||||
type: str
|
||||
updated_at:
|
||||
description: Snapshot update time.
|
||||
type: str
|
||||
volume_id:
|
||||
description: Volume ID.
|
||||
type: str
|
||||
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Get snapshots.
|
||||
- openstack.cloud.volume_snapshot_info:
|
||||
register: snapshots
|
||||
|
||||
- openstack.cloud.volume_snapshotbackup_info:
|
||||
name: my_fake_snapshot
|
||||
register: snapshot
|
||||
'''
|
||||
|
||||
from ansible_collections.openstack.cloud.plugins.module_utils.openstack import OpenStackModule
|
||||
|
||||
|
||||
class VolumeSnapshotInfoModule(OpenStackModule):
|
||||
argument_spec = dict(
|
||||
details=dict(default=True, type='bool'),
|
||||
name=dict(required=False, type='str'),
|
||||
volume=dict(required=False, type='str'),
|
||||
status=dict(required=False, type='str',
|
||||
choices=['creating', 'available', 'error',
|
||||
'deleting', 'error_deleting', 'rollbacking',
|
||||
'backing-up']),
|
||||
)
|
||||
|
||||
def run(self):
|
||||
|
||||
details_filter = self.params['details']
|
||||
name_filter = self.params['name']
|
||||
volume_filter = self.params['volume']
|
||||
status_filter = self.params['status']
|
||||
|
||||
data = []
|
||||
query = {}
|
||||
if name_filter:
|
||||
query['name'] = name_filter
|
||||
if volume_filter:
|
||||
query['volume_id'] = self.conn.block_storage.find_volume(volume_filter)
|
||||
if status_filter:
|
||||
query['status'] = status_filter.lower()
|
||||
|
||||
for raw in self.conn.block_storage.snapshots(details_filter, **query):
|
||||
dt = raw.to_dict()
|
||||
dt.pop('location')
|
||||
data.append(dt)
|
||||
|
||||
self.exit_json(
|
||||
changed=False,
|
||||
volume_snapshots=data
|
||||
)
|
||||
|
||||
|
||||
def main():
|
||||
module = VolumeSnapshotInfoModule()
|
||||
module()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in New Issue
Block a user