diff --git a/.env.example b/.env.example index f93fdca22..e591dbf9e 100644 --- a/.env.example +++ b/.env.example @@ -28,7 +28,9 @@ PROXMOX_TOKEN_SECRET=your-api-token-secret-uuid # --- Proxmox Backup Server (PBS) Integration (Optional) --- # Only API Token authentication is supported. -# Use consecutive numbers (_2, _3, ...) for additional PBS instances (Not currently supported by Pulse) +# Use consecutive numbers (_2, _3, ...) for additional PBS instances. + +# PBS Primary Instance # PBS_HOST=your-pbs-ip-or-hostname # PBS_TOKEN_ID=your-pbs-token-id@pbs!my-token # PBS_TOKEN_SECRET=your-pbs-token-secret @@ -41,6 +43,14 @@ PROXMOX_TOKEN_SECRET=your-api-token-secret-uuid # Optional: Set to true to allow self-signed certificates (default: true) # PBS_ALLOW_SELF_SIGNED_CERTS=true +# PBS Additional Instance Example (suffix with _2, _3, etc.) +# PBS_HOST_2=second-pbs-ip-or-hostname +# PBS_TOKEN_ID_2=second-pbs-token-id@pbs!my-token +# PBS_TOKEN_SECRET_2=second-pbs-token-secret +# PBS_PORT_2=8007 +# PBS_NODE_NAME_2=second-pbs-internal-hostname +# PBS_ALLOW_SELF_SIGNED_CERTS_2=true + # --- Pulse Service Settings (Optional) --- # Interval in milliseconds for fetching detailed VM/Container metrics (default: 2000) # PULSE_METRIC_INTERVAL_MS=2000 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cd4c6747..53510ccc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [3.6.3](https://github.com/rcourtman/Pulse/compare/v3.6.1...v3.6.3) (2024-07-25) + +### Fixed +- Node summary cards now correctly adjust their layout to fill available space when fewer than the maximum number of cards (e.g., 4) are displayed, improving responsiveness for varying node counts. This involved changes to JavaScript logic for column calculation and Tailwind CSS safelisting. + +### Docs +- Updated `README.md` and `.env.example` to accurately reflect and document support for monitoring multiple Proxmox Backup Server (PBS) instances, including configuration examples for numbered PBS variables. + ## [3.6.1](https://github.com/rcourtman/Pulse/compare/v3.6.0...v3.6.1) (2025-05-10) ### Features diff --git a/package.json b/package.json index 157922d11..43215873c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pulse", - "version": "3.6.3-dev.0", + "version": "3.6.3", "description": "A lightweight monitoring application for Proxmox VE.", "main": "server/index.js", "scripts": {