mirror of
https://github.com/Telmate/proxmox-api-go.git
synced 2026-04-25 23:45:55 +03:00
[PR #207] [MERGED] Cli overhaul: guest create,get,delete commands (partial basic tests) #312
Labels
No labels
good first issue
issue/confirmed
issue/critical
proposal/accepted
pull-request
type/bug
type/enhancement
type/feature
type/question
type/refactoring
type/testing
type/testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxmox-api-go#312
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/Telmate/proxmox-api-go/pull/207
Author: @Tinyblargon
Created: 10/15/2022
Status: ✅ Merged
Merged: 10/20/2022
Merged by: @mleone87
Base:
master← Head:CLI-Overhaul📝 Commits (10+)
bae7412Add TODO items for new CLIa2cc692Make code more Dryfc6e809Tidy codea693aefrefactor: Make functions private669ce52Update TODOc334542Merge branch 'Telmate:master' into CLI-Overhaulad727ebrefactor: Make variable globald428236feat: Add commands to create guests90612a3feat: Add command to get guest configurationa9d8acefeat: Add command to delete guest📊 Changes
36 files changed (+333 additions, -124 deletions)
View changed files
📝
cli/command/commands/commands.go(+1 -0)📝
cli/command/create/create-acmeaccount.go(+2 -2)📝
cli/command/create/create-pool.go(+4 -4)📝
cli/command/create/create-storage.go(+2 -2)📝
cli/command/create/create.go(+2 -2)➕
cli/command/create/guest/create-guest-lxc.go(+20 -0)➕
cli/command/create/guest/create-guest-qemu.go(+20 -0)➕
cli/command/create/guest/create-guest.go(+48 -0)📝
cli/command/delete/delete-acmeaccount.go(+1 -1)➕
cli/command/delete/delete-guest.go(+33 -0)📝
cli/command/delete/delete-metricserver.go(+1 -1)📝
cli/command/delete/delete-pool.go(+2 -3)📝
cli/command/delete/delete-storage.go(+1 -1)📝
cli/command/delete/delete-user.go(+2 -3)📝
cli/command/delete/delete.go(+1 -1)📝
cli/command/get/get-acmeaccount.go(+1 -1)➕
cli/command/get/get-guest.go(+38 -0)📝
cli/command/get/get-metricserver.go(+1 -1)📝
cli/command/get/get-pool.go(+2 -17)📝
cli/command/get/get-storage.go(+1 -1)...and 16 more files
📄 Description
Another pull for https://github.com/Telmate/proxmox-api-go/issues/171
Work so far:
Only some basic test for Qemu. No test for Lxc yet, Lxc relies on a template which we cant upload yet in an automated fashion.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
Client#387