W3cubDocs

/Ansible 2.7

cs_disk_offering - Manages disk offerings on Apache CloudStack based clouds.

New in version 2.7.

Synopsis

  • Create and delete disk offerings for guest VMs.
  • Update display_text or display_offering of existing disk offering.

Requirements

The below requirements are needed on the host that executes this module.

  • python >= 2.6
  • cs >= 0.6.10

Parameters

Parameter Choices/Defaults Comments
api_http_method
    Choices:
  • get
  • post
HTTP method used to query the API endpoint.
If not given, the CLOUDSTACK_METHOD env variable is considered.
As the last option, the value is taken from the ini config file, also see the notes.
Fallback value is get if not specified.
api_key
API key of the CloudStack API.
If not given, the CLOUDSTACK_KEY env variable is considered.
As the last option, the value is taken from the ini config file, also see the notes.
api_region Default:
cloudstack
Name of the ini section in the cloustack.ini file.
If not given, the CLOUDSTACK_REGION env variable is considered.
api_secret
Secret key of the CloudStack API.
If not set, the CLOUDSTACK_SECRET env variable is considered.
As the last option, the value is taken from the ini config file, also see the notes.
api_timeout
HTTP timeout in seconds.
If not given, the CLOUDSTACK_TIMEOUT env variable is considered.
As the last option, the value is taken from the ini config file, also see the notes.
Fallback value is 10 seconds if not specified.
api_url
URL of the CloudStack API e.g. https://cloud.example.com/client/api.
If not given, the CLOUDSTACK_ENDPOINT env variable is considered.
As the last option, the value is taken from the ini config file, also see the notes.
bytes_read_rate
Bytes read rate of the disk offering.
bytes_write_rate
Bytes write rate of the disk offering.
customized
bool
    Choices:
  • no
  • yes
Whether disk offering iops is custom or not.
disk_size
Size of the disk offering in GB (1GB = 1,073,741,824 bytes).
display_offering
bool
    Choices:
  • no
  • yes
An optional field, whether to display the offering to the end user or not.
display_text
Display text of the disk offering.
If not set, name will be used as display_text while creating.
domain
Domain the disk offering is related to.
Public for all domains and subdomains if not set.
hypervisor_snapshot_reserve
Hypervisor snapshot reserve space as a percent of a volume.
Only for managed storage using Xen or VMware.
iops_max
Max. iops of the disk offering.
iops_min
Min. iops of the disk offering.
iops_read_rate
IO requests read rate of the disk offering.
iops_write_rate
IO requests write rate of the disk offering.
name
required
Name of the disk offering.
provisioning_type
    Choices:
  • thin
  • sparse
  • fat
Provisioning type used to create volumes.
state
    Choices:
  • present
  • absent
State of the disk offering.
storage_tags
The storage tags for this disk offering.

aliases: storage_tag
storage_type
    Choices:
  • local
  • shared
The storage type of the disk offering.

Notes

Note

  • Ansible uses the cs library’s configuration method if credentials are not provided by the arguments api_url, api_key, api_secret. Configuration is read from several locations, in the following order. The CLOUDSTACK_ENDPOINT, CLOUDSTACK_KEY, CLOUDSTACK_SECRET and CLOUDSTACK_METHOD. CLOUDSTACK_TIMEOUT environment variables. A CLOUDSTACK_CONFIG environment variable pointing to an .ini file. A cloudstack.ini file in the current working directory. A .cloudstack.ini file in the users home directory. Optionally multiple credentials and endpoints can be specified using ini sections in cloudstack.ini. Use the argument api_region to select the section name, default section is cloudstack. See https://github.com/exoscale/cs for more information.
  • A detailed guide about cloudstack modules can be found in the CloudStack Cloud Guide.
  • This module supports check mode.

Examples

- name: Create a disk offering with local storage
  local_action:
    module: cs_disk_offering
    name: small
    display_text: Small 10GB
    disk_size: 10
    storage_type: local

- name: Create or update a disk offering with shared storage
  local_action:
    module: cs_disk_offering
    name: small
    display_text: Small 10GB
    disk_size: 10
    storage_type: shared
    storage_tags: SAN01

- name: Remove a disk offering
  local_action:
    module: cs_disk_offering
    name: small
    state: absent

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key Returned Description
bytes_read_rate
int
success
Bytes read rate of the disk offering

Sample:
1000
bytes_write_rate
int
success
Bytes write rate of the disk offering

Sample:
1000
created
string
success
Date the offering was created

Sample:
2017-11-19T10:48:59+0000
customized
bool
success
Whether the offering uses custom IOPS or not

disk_size
int
success
Size of the disk offering in GB

Sample:
10
display_offering
bool
success
Whether to display the offering to the end user or not.

display_text
string
success
Display text of the offering

Sample:
Small 10GB
domain
string
success
Domain the offering is into

Sample:
ROOT
id
string
success
UUID of the disk offering

Sample:
a6f7a5fc-43f8-11e5-a151-feff819cdc9f
iops_max
int
success
Max iops of the disk offering

Sample:
1000
iops_min
int
success
Min iops of the disk offering

Sample:
500
iops_read_rate
int
success
IO requests per second read rate of the disk offering

Sample:
1000
iops_write_rate
int
success
IO requests per second write rate of the disk offering

Sample:
1000
name
string
success
Name of the system offering

Sample:
Micro
provisioning_type
string
success
Provisioning type used to create volumes

Sample:
thin
storage_tags
list
success
List of storage tags

Sample:
['eco']
storage_type
string
success
Storage type used to create volumes

Sample:
shared


Status

This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.

Maintenance

This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.

For a list of other modules that are also maintained by the Ansible Community, see here.

Author

  • David Passante (@dpassante)
  • René Moser(@resmo)

Hint

If you notice any issues in this documentation you can edit this document to improve it.

© 2012–2018 Michael DeHaan
© 2018 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.7/modules/cs_disk_offering_module.html