- Added template typing so approved templates can represent either QEMU VMs or LXC containers.
- Added LXC template discovery from Proxmox storage `vztmpl` content in the admin template manager. - Added live LXC container provisioning through the Proxmox API with configurable rootfs storage and optional DHCP bridge. - Routed start, stop, delete, expiration, status, and IP refresh operations through typed Proxmox VM/LXC API paths. - Added Proxmox tags to newly created VMs and containers, including a sanitized per-user tag for easier PVE administration. - Updated the admin and portal UI to show VM versus LXC template/deployment types and generic Proxmox resource IDs. - Added schema upgrades for template provisioning type, LXC template references, and deployment resource type. - Documented LXC setup, storage permissions, and the new Proxmox settings.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Plugin Name: Support Provisioning Portal
|
||||
* Description: Internal self-service portal for provisioning standardized Proxmox VE VMs.
|
||||
* Version: 0.6.0
|
||||
* Description: Internal self-service portal for provisioning standardized Proxmox VE VMs and LXC containers.
|
||||
* Version: 0.7.0
|
||||
* Author: Internal Support
|
||||
* Requires PHP: 8.0
|
||||
* Requires at least: 6.2
|
||||
@@ -13,7 +13,7 @@ if (!defined('ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
define('SPP_VERSION', '0.6.0');
|
||||
define('SPP_VERSION', '0.7.0');
|
||||
define('SPP_PLUGIN_FILE', __FILE__);
|
||||
define('SPP_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
||||
define('SPP_PLUGIN_URL', plugin_dir_url(__FILE__));
|
||||
|
||||
Reference in New Issue
Block a user