REST API for ProxmoxAAS
Go to file
Arthur Lu 3810eef1fa fix spelling
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-04-11 18:00:04 +00:00
.gitignore add basic local db utility functions 2023-02-27 01:28:01 +00:00
db.js fix spelling 2023-04-11 18:00:04 +00:00
main.js fix bug in resource get 2023-04-03 21:53:11 +00:00
package.json rename index.js to main.js 2023-02-26 08:36:27 +00:00
proxmoxaas-api.service add start script and sample systemd service 2023-02-10 21:58:22 +00:00
pveutils.js implement disk deallocation in delete instance, 2023-03-01 01:14:03 +00:00
README.md Update README.md 2023-02-28 21:15:17 -08:00
start.sh add start script and sample systemd service 2023-02-10 21:58:22 +00:00
vars.js.template use vars to specify cors domain 2023-02-28 22:04:30 +00:00

ProxmoxAAS API - Client REST API

ProxmoxAAS API provides functionality to the Client by both providing a proxy API for the Proxmox API, and an API for requesting resources within a defined quota.

Prerequisites

Configuring API Token and Permissions

In the proxmox web ui, follow the following steps:

  1. Add a new user proxmoxaas-api to proxmox
  2. Create a new API token for the user proxmoxaas-api and copy the secret key to a safe location
  3. Create a new role proxmoxaas-api with at least the following permissions:
    • VM.* except VM.Audit, VM.Backup, VM.Clone, VM.Console, VM.Monitor, VM.PowerMgmt, VM.Snapshot, VM.Snapshot.Rollback
    • Datastore.Allocate, Datastore.AllocateSpace, Datastore.Audit
    • User.Modify
  4. Add a new API Token Permission with path: /, select the API token created previously, and role: proxmoxaas-api
  5. Add a new User Permission with path: /, select the proxmoxaas-api user, and role: proxmoxaas-api

Installation - API

  1. Clone this repo onto Client Host
  2. Run npm install to initiaze the package requirements
  3. Copy vars.js.template as vars.js and modify the following values:
    • pveAPI - the URI to the Proxmox API, ie pve.<FQDN>/api2/json
    • domain - your domain name
    • listenPort - the port you want the API to listen on, ie 8080
    • pveAPIToken - the user(name), authentication realm, token id, and token secrey key (uuid)
  4. Start the service using node ., or call the provided shell script, or use the provided systemctl service script

Result

After these steps, the ProxmoxAAS Client should be avaliable and fully functional at client.<FQDN>.