Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
unreleased
[v0.6.1]
PVE API client
Fixed
- Fixed app version.
- LXC features properties are now pointes.
v0.6.0
PVE API wrapper
Added
GET /custom-api/v1/lxc/{id}/ip
endpoint.POST /custom-api/v1/lxc/{id}/exec
endpoint.
Fixed
- pve api wrapper host option is now
--host
. - pve api wrapper port option is now
--port
.
PVE API client
Added
GET /access/permissions
implementation asPVE.Access.GetPermissions
.GET /cluster/resources
implementation asPVE.Cluster.GetVMIDs
,PVE.Cluster.GetRandomVMID
andPVE.Cluster.IsVMIDAvailable
.GET /nodes/{node}/firewall/rules
implementation asPVE.Node.Firewall.GetRule
.POST /nodes/{node}/firewall/rules
implementation asPVE.Node.Firewall.NewRule
.DELETE /nodes/{node}/firewall/rules/{pos}
implementation asPVE.Node.Firewall.DeleteRule
andPVE.Node.Firewall.DeleteRuleByPos
.GET /nodes/{node}/lxc/{id}/interfaces
implementation asPVE.LXC.GetInterfaces
andPVE.LXC.GetInterface
.GET /nodes/{node}/lxc/{id}/status/current
implementation asPVE.LXC.GetStatus
.POST /nodes/{node}/lxc/{id}/status/reboot
implementation asPVE.LXC.Reboot
.POST /nodes/{node}/lxc/{id}/status/resume
implementation asPVE.LXC.Resume
.POST /nodes/{node}/lxc/{id}/status/shutdown
implementation asPVE.LXC.Shutdown
.POST /nodes/{node}/lxc/{id}/status/start
implementation asPVE.LXC.Start
.POST /nodes/{node}/lxc/{id}/status/stop
implementation asPVE.LXC.Stop
.POST /custom-api/v1/lxc/{id}/exec
implementation asPVE.LXC.Exec
.
Fixed
PVE.LXC.Create
hostname assignment.PVE.LXC.Create
net assignment.PVE.LXC.Create
multiple networks support.
Changed
PVE.LXC.Create
request'sFeatures
property is now a struct.
v0.5.0
PVE API wrapper
Added
- new http server that redirects http requests to the desired proxmox instance.
- proxmox error response wrapping into
pkg/errors.HTTPError
.
PVE API client
Added
/nodes/:node/lxc/:vmid
implementations.
Fixed
- pve api result assignment.
PVE.version
http method.PVE.Lxc.GetAll
empty result.
v0.4.0
Changed
- Cluster endpoints implementations are now located under
PVE.Cluster
field. - Cluster Firewall endpoints implementations are now located under
PVE.Cluster.Firewall
field. - Node endpoints implementations are now located under
PVE.Node
field. - Node Firewall endpoints implementations are now located under
PVE.Node.Firewall
field. - Node APT endpoints implementations are now located under
PVE.Node.APT
field. - Node Storage endpoints implementations are now located under
PVE.Node.Storage
field. - LXC endpoints implementations are now located under
PVE.LXC
field.
v0.3.0
Added
- Node's APT endpoints implementations.
v0.2.1
Fixed
GetClusterFirewallAliases
http method is now get.GetClusterFirewallIPSet
http method is now get.GetClusterFirewallRules
url path is now correct.
v0.2.0
Added
- Helpers:
BoolToInt
convertstrue
to1
andfalse
to0
.NewStr
,NewInt
andNewBool
methods that converts the primitive value to a pointer to it.
- Cloudflare Zero Trust support with Service Tokens.
- Proxmox Cluster:
GetClusterFirewallAliases
retrieves all cluster firewall aliases.GetClusterFirewallAlias
retrieves cluster firewall alias by it's name.CreateClusterFirewallAlias
creates a cluster firewall IP or Network Alias.UpdateClusterFirewallAlias
updates a cluster firewall IP or Network alias.DeleteClusterFirewallAlias
removes a cluster firewall IP or Network alias.GetClusterFirewallIPSet
retrieves all cluster firewall IPSets.GetClusterFirewallRules
retrieves all cluster firewall rules.
- Proxmox nodes:
GetAll
retrieves all nodes.Get
retrieves a single nodes.GetNodeRules
retrieves node's firewall rules.GetNodeRulesByPos
Retrieves a single node's firewall rule using rule's position (pos) as an index.ReadNodeLog
Retrieves node's firewall log entries.GetNodeDatastores
retrieves node's datastores info.GetNodeDatastoreContent
retrieves node's datastores info.DownloadISOToNodeDatastore
downloads an iso from an url into a node's datastore.DownloadVZTemplateToNodeDatastore
downloads a vztemplate from an url into a node's datastore.
- Proxmox LXC:
GetLxcs
returns node's lxc index per node.CreateLxc
creates an LXC container and return useful information to interact with it after it's creation.
Changed
- Main package was renamed from proxmoxapi to pve.
pve.NewEnvCreds
method can now return an error.pve.New
andpve.NewWithCredentials
methods now sends a Get Version request to the remote proxmox api to check for valid credentials.pve.Credentials
now have a Set method that adds the authorization header to the given http request.
v0.1.0
Added
- Proxmox api token credentials support.
- Proxmox api version endpoint.