summaryrefslogtreecommitdiff
path: root/cloud/misc
Commit message (Collapse)AuthorAgeFilesLines
* Refreshed metadata for extras modulesToshio Kuratomi2016-12-068-0/+32
|
* Fetch vmid from the ProxmoxAPI when not set (#3591)0livd2016-12-051-2/+31
| | | | | | | | The vmid is no longer a required parameter For the 'present' state: If not set, the next available one will be fetched from the API For the 'started', 'stopped', 'restarted' and 'absent' states: If not set, the module will try to fetch it from the API based on the hostname Inspired from the behavior of the proxmox_kvm module
* Make `main()` calls conditional - cloud (#3657)Fabio Alessandro Locati2016-12-054-4/+12
|
* Native YAML - cloud/misc (#3615)Fabio Alessandro Locati2016-12-025-49/+205
| | | | | | * Native YAML - cloud/misc * Fix mistake
* Performance improvement using in-operator on dictsDag Wieers2016-11-171-8/+8
| | | | | | | Just a small cleanup for the existing occurrences. Using the in-operator for hash lookups is faster than using .keys() http://stackoverflow.com/questions/29314269/why-do-key-in-dict-and-key-in-dict-keys-have-the-same-output
* New module proxmox_kvm (#3292)Abdoul Bah2016-11-161-0/+1054
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New module proxmox_kvm * fixed qxl value vor vga param > | Name | Type | Format | Description | > |------|------|--------|-------------| > | vga | enum | std \| cirrus \| vmware \| qxl \| serial0 \| serial1 \| serial2 \| serial3 \| qxl2 \| qxl3 \| qxl4 | Select the VGA type. If you want to use high resolution modes (>= 1280x1024x16) then you should use the options 'std' or 'vmware'. Default is 'std' for win8/win7/w2k8, and 'cirrus' for other OS types. The 'qxl' option enables the SPICE display sever. For win* OS you can select how many independent displays you want, Linux guests can add displays them self. You can also run without any graphic card, using a serial device as terminal. | * Fix create_vm() fail on PV 4.3 * Set default for force as null in doc * proxmox_kvm: revision fixes * proxmox_kvm: more revision fixes * Fix indentation * revision fixes * Ensure PEP-3110: Catching Exceptions * KeyError, to KeyError as -- PEP-3110: Catching Exceptions * Fix Yaml document syntax; Notes: => Notes - * Refix documentation issue * Fix Documentation * Remove Notes: in description * Add current state and it return value * Update documentation * fixed local variable 'results' referenced before assignment * Fix fixed local variable 'results' referenced before assignment * minor fixes in error messages * merge upstream/devel int devel * minor fixes in error messages * Fix indentation and documentation * Update validate_certs description
* Fix bare variable references in docsAndrew Gaffney2016-11-102-2/+2
|
* replace type() with isinstance() (#3404)jctanner2016-11-093-11/+11
| | | | | Replace use of type() with isinstance() Addresses https://github.com/ansible/ansible/issues/18310
* Fix line endings.Matt Clay2016-11-031-1530/+1530
|
* support proxmox resource pool (#2859)Pitsanu Swangpheaw2016-10-251-0/+8
|
* Fix remaining python3 compile problemsToshio Kuratomi2016-10-232-22/+23
|
* Add python-2.6 requirement to the proxmox moduleToshio Kuratomi2016-10-171-1/+1
|
* Fix proxmox for python 3Michael Scherer2016-10-152-11/+11
| | | | | Since it doesn't work on python 2.4, we can use the native exception handling way for python 3
* Port ovirt to python 3Michael Scherer2016-10-151-3/+3
| | | | | Since ovirt sdk is not running on python 2.4, we can use python 2.6 syntax directly for exceptions.
* Port virt to python3 (#3167)Michael Scherer2016-10-141-1/+3
|
* proxmox add exaples static ip (#3092)Aleksey Gavrilov2016-10-111-0/+3
|
* Use addresses and names reserved for documentation (#2894)Robin Schneider2016-09-122-5/+5
| | | | | Trying to preserve the meaning of the examples. Related to: https://github.com/ansible/ansible/issues/17479
* This is an ansible module to control/create/adapt/remove VMs on a RHEV/oVirt ↵TimothyVandenbrande2016-08-301-0/+1530
| | | | environment. (#2202)
* Implement template storage selection (#2755)alxsey2016-08-301-4/+6
|
* Allow value to be bool where 'yes'/'no' are in choices (#2593)Shinichi TAMURA2016-08-172-8/+8
| | | | | | | | | | | * Changed type of 'details' argument to bool on ecs_service_facts module. * Changed type of 'autostart' argument to bool on virt_* modules. * Changed types of 'autoconnect' and 'stp' argument to bool on nmcli module. ('create_connection_bridge(self)' and 'modify_connection_bridge(self)' are not implemented yet?) * Added conversion of 'value' argument when 'vtype' is boolean on debconf module.
* make sure nic is always defined (#2678)Brian Coca2016-08-051-0/+1
|
* Implement mounts in proxmox module (#2426)Baptiste Mille-Mathias2016-06-171-0/+15
| | | | | | | | | | | | | * Implement mounts in proxmox module mounts in proxmox are the additionnal disk devices set in a guests. We handle the mounts the same way that netif devices, using a dictionnary with keys being mp0, mp1,… * Add version_added Seems to be a requirement but I didn't see that anywhere. Hope it'll fix the travis-ci issue
* Virt net mods batch 1 (#1686)sxpert2016-06-131-4/+55
| | | | | | | | | | | | | | | | * add a new modify command for now, allows adding or modifying hosts in the dhcp subsystem * fix some pep8 things that escaped * add modify in the list in the doc * added mention of adding modify in version 2.1 * handle the test mode case for modify * modify the code for finer check mode support
* change netif type to dict and update example (#2187)Nik LaBelle2016-05-091-2/+5
|
* Add partial doc on return value of virt (#2116)Michael Scherer2016-04-271-0/+17
|
* Change disk type to str to allow correct usage of rootfs for LXC (#2091)Joshua Gilman2016-04-251-1/+1
|
* Fixed netif params when create lxc container (#2064)Adrià Galín Figueras2016-04-251-0/+3
|
* Add cloudinit support to ovirt.py moduleKarim Boumedhel2016-04-151-6/+89
|
* Do not leak password by error for ovirt module (#1991)Michael Scherer2016-04-151-1/+1
|
* remove legacy action style from examplesliquidat2016-03-101-39/+39
| | | | | | | | | | | - "action" style invoking is a legacy way to call modules - the examples were updated to the typical style of calling complex modules: ovirt: parameter1: value1 parameter2: value2 ...
* Fix opening libvirt esx connectionAlex Kalinin2016-02-101-0/+3
|
* fix typoBaptiste Mille-Mathias2016-01-311-1/+1
| | | conainerization => containerization
* added version info on autodetection featureBrian Coca2016-01-111-1/+1
|
* Merge pull request #1146 from frogu/proxmox_lxc_supportBrian Coca2016-01-111-15/+27
|\ | | | | add lxc support, without dropping openvz
| * add lxc support, without dropping openvzŁukasz Proszek2015-10-231-15/+27
| |
* | Replace choices=BOOLEANS by type='bool', fix #1326Michael Scherer2015-12-212-5/+5
|/
* sys.exit removal for cloud/misc/ovirt.pyMatt Martz2015-10-051-14/+22
|
* Merge pull request #776 from drybjed/update-virt_poolBrian Coca2015-07-271-1/+1
|\ | | | | Update author information in virt_pool docs
| * Update author information in virt_pool docsMaciej Delmanowski2015-07-281-1/+1
| |
* | Merge pull request #757 from drybjed/virt_netBrian Coca2015-07-271-0/+543
|\ \ | |/ |/| libvirt: virt_net module
| * Update author information in virt_net docsMaciej Delmanowski2015-07-281-1/+1
| |
| * Remove unused parameter from method argumentsMaciej Delmanowski2015-07-251-2/+2
| |
| * Add whitespace so diff with 'virt_pool' is easierMaciej Delmanowski2015-07-251-0/+1
| |
| * Rewrite method to not use try/exceptMaciej Delmanowski2015-07-251-11/+6
| | | | | | | | | | Additional checks are not needed, because 'self.conn.get_entry(-1)' returns all existing entries, each one should have state defined.
| * Rewrite for loops in a more Pythonic styleMaciej Delmanowski2015-07-251-8/+4
| |
| * Remove separate check for XenMaciej Delmanowski2015-07-251-7/+1
| | | | | | | | | | Module checked for Xen-based system, however since 'xen:///' URI support exists in 'libvirt', we should use it explicitly instead.
| * libvirt: virt_net moduleMaciej Delmanowski2015-07-241-0/+557
| | | | | | | | This module manages network configuration in libvirt.
* | Remove unused parameter from method argumentsMaciej Delmanowski2015-07-251-2/+2
| |
* | Rewrite method to not use try/exceptMaciej Delmanowski2015-07-251-11/+6
| | | | | | | | | | Additional checks are not needed, because 'self.conn.get_entry(-1)' returns all existing entries, each one should have state defined.
* | Rewrite for loops in a more Pythonic styleMaciej Delmanowski2015-07-251-8/+4
| |