ProxmoxAAS-API/README.md

70 lines
3.5 KiB
Markdown
Raw Permalink Normal View History

2023-10-05 21:10:49 +00:00
# ProxmoxAAS API - REST API for ProxmoxAAS Dashboard
ProxmoxAAS API provides functionality for the Dashboard by providing a proxy API for the Proxmox API, and an API for requesting resources within a defined quota.
2023-03-01 05:15:17 +00:00
2024-01-16 22:36:21 +00:00
## Installation
### Prerequisites
2023-10-05 21:19:15 +00:00
- [ProxmoxAAS-Dashboard](https://git.tronnet.net/tronnet/ProxmoxAAS-Dashboard)
2023-03-01 05:15:17 +00:00
- Proxmox VE Cluster (v7.0+)
2023-10-05 21:19:15 +00:00
- Reverse proxy server which can proxy the dashboard and API
2023-04-19 05:54:18 +00:00
- FQDN
2023-04-26 02:38:46 +00:00
- Server with NodeJS (v18.0+) and NPM installed
2024-01-16 22:36:21 +00:00
### Configuring API Token and Permissions
2023-04-19 05:54:18 +00:00
In Proxmox VE, follow the following steps:
1. Add a new user `proxmoxaas-api` to Proxmox VE
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:
2023-03-01 05:15:17 +00:00
- 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
2023-07-14 21:48:06 +00:00
- Pool.Audit
4. Add a new API Token Permission with path: `/`, select the API token created previously, and role: `proxmoxaas-api`
2023-03-01 05:15:17 +00:00
5. Add a new User Permission with path: `/`, select the `proxmoxaas-api` user, and role: `proxmoxaas-api`
2024-01-16 22:36:21 +00:00
### Installation - API
2023-10-05 21:19:15 +00:00
1. Clone this repo onto `Dashboard Host`
2023-03-01 05:15:17 +00:00
2. Run `npm install` to initiaze the package requirements
2024-01-16 22:36:21 +00:00
3. Copy `template.config.json` as `config.json` and modify the following values:
1. In `backends/pve/config`:
- url: the URI to the Proxmox API, ie `http://<proxmoxhost>:8006/api2/json` or `http://<proxmox URL>/api2/json` if Proxmox VE is behind a reverse proxy.
- token: the user(name), authentication realm (pam), token id, and token secrey key (uuid)
- root (**Optional**): In order to allow users to customize instance pcie devices, the API must use the root credentials for privilege elevation. Provide the root username, ie. `root@pam`, and root user password
2. In `backends/paasldap/config` (**Optional**):
- url: url to a PAAS-LDAP server API ie. `http://<paasldap-host>:8082`
3. In `handlers/auth`:
- Add any authentication handlers to be used by the API. Add the realm name (ie. `pve`) as the key and the handler name as provided in `backends`. For example, a PAAS-LDAP handler could be added as `"paas-ldap": "paasldap"` and users in the realm `user@paas-ldap` will use this handler to perform auth actions. Refer to [backends](#Backends)
4. In `application`:
- hostname - the ProxmoxAAS-Dashboard URL, ie `host.domain.tld`
- domain - the base domain for the dashboard and proxmox, ie `domain.tld`
- listenPort - the port you want the API to listen on, ie `8081`
5. In `useriso`:
- node: host of storage with user accessible iso files
- storage: name of storage with user accessible iso files
4. Start the service using `node .`, or call the provided shell script, or use the provided systemctl service script
2023-03-01 05:15:17 +00:00
2024-01-16 22:36:21 +00:00
### Installation - Reverse Proxy
2023-10-05 21:19:15 +00:00
1. Configure nginx or preferred reverse proxy to reverse proxy the dashboard. The configuration should include at least the following:
2023-04-19 05:54:18 +00:00
```
server {
listen 443 ssl;
2023-10-13 18:01:53 +00:00
server_name paas.<FQDN>;
2023-04-19 05:54:18 +00:00
location / {
2023-10-13 18:01:53 +00:00
return 301 "/dashboard/";
}
location /dashboard/ {
proxy_pass http://proxmoxaas.dmz:8080/;
proxy_redirect default;
2023-04-19 05:54:18 +00:00
}
location /api/ {
2023-10-13 18:01:53 +00:00
proxy_pass http://proxmoxaas.dmz:80/api/;
proxy_redirect default;
2023-04-19 05:54:18 +00:00
}
}
```
2023-10-13 18:01:53 +00:00
2. Start nginx with the new configurations
2023-04-19 05:54:18 +00:00
2024-01-16 22:36:21 +00:00
### Result
After these steps, the ProxmoxAAS Dashboard should be available and fully functional at `paas.<FQDN>` or `paas.<FQDN>/dashboard/`.
# Backends