Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New module: Proxmox disk management #5101

Merged
merged 39 commits into from
Sep 18, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
73c1064
New module: Proxmox disk management
castorsky Aug 9, 2022
2386b8c
Remove misplaced option
castorsky Aug 9, 2022
a6f9fc9
Type missed
castorsky Aug 9, 2022
601dd98
Fixed docs, quotes, 2.7 syntax
castorsky Aug 9, 2022
4ce1681
Forgotten comma
castorsky Aug 10, 2022
a8c4141
Version added 5.5.0
castorsky Aug 15, 2022
1d25bb2
Italic options
castorsky Aug 15, 2022
c78cefc
Missed dot
castorsky Aug 15, 2022
b0f94bc
Pythonify python
castorsky Aug 15, 2022
8ea75ff
Shorten command
castorsky Aug 15, 2022
2f89300
Action parameter drop. General improvements.
castorsky Aug 16, 2022
c177d23
Add proxmox_disk integration testing
castorsky Aug 16, 2022
315d0e2
Shorten getting vmid
castorsky Aug 26, 2022
0be050f
Code tag for value
castorsky Aug 26, 2022
26cdb07
Italic tag for option
castorsky Aug 26, 2022
6b0dd2b
Definite ID of the VM
castorsky Aug 26, 2022
a37bd5e
Docs edit and loop condition
castorsky Aug 27, 2022
c26797a
Simplify conditions
castorsky Aug 27, 2022
03e38aa
Dropped bps options, added idempotency checks
castorsky Aug 27, 2022
4214eff
Documentaion edit
castorsky Aug 27, 2022
02b3f19
Rewrite create/import condition
castorsky Aug 27, 2022
396cb86
Trainling comma
castorsky Sep 2, 2022
b0ff97e
Added type field to all choosable arguments
castorsky Sep 2, 2022
734191e
Description of disk bus ranges
castorsky Sep 2, 2022
1c7540f
Fix imports
castorsky Sep 5, 2022
0e0c6f4
Update version
castorsky Sep 11, 2022
ee0c053
Lowercase YAML boolean
castorsky Sep 11, 2022
df7be71
Rename grown to resized and update documentation
castorsky Sep 11, 2022
0cc12ab
Documentation updated before actual changes
castorsky Sep 12, 2022
f2d3929
Added 'update' flag for 'present' state
castorsky Sep 12, 2022
552668c
Traling space
castorsky Sep 12, 2022
13270c2
YAML indentation
castorsky Sep 12, 2022
ebc87a1
Merged 'updated' option into 'present'.
castorsky Sep 12, 2022
86e40bf
Doc update.
castorsky Sep 12, 2022
de1f188
Exclude 'import_from' on update
castorsky Sep 13, 2022
834ee0b
Version bump
castorsky Sep 14, 2022
9b568bd
yaml boolean lowercase
castorsky Sep 18, 2022
3a87dd9
yaml boolean lowercase
castorsky Sep 18, 2022
45bd86d
More detailed description
castorsky Sep 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/BOTMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,8 @@ files:
$modules/cloud/misc/proxmox_template.py:
maintainers: UnderGreen
ignore: skvidal
$modules/cloud/misc/proxmox_disk.py:
maintainers: castorsky
$modules/cloud/misc/rhevm.py:
maintainers: $team_virt TimothyVandenbrande
labels: rhevm virt
Expand Down
2 changes: 2 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1211,6 +1211,8 @@ plugin_routing:
redirect: community.general.cloud.profitbricks.profitbricks_volume_attachments
proxmox:
redirect: community.general.cloud.misc.proxmox
proxmox_disk:
redirect: community.general.cloud.misc.proxmox_disk
proxmox_domain_info:
redirect: community.general.cloud.misc.proxmox_domain_info
proxmox_group_info:
Expand Down
Loading