From 39d78754faea67669c087bfff7dd1b83736f529c Mon Sep 17 00:00:00 2001 From: "push-app-to-main[bot]" <203845782+push-app-to-main[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 10:06:57 +0200 Subject: [PATCH] PegaProx (#16154) * Add pegaprox (ct) * Update pegaprox.sh --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com> --- ct/headers/pegaprox | 6 ++++ ct/pegaprox.sh | 64 +++++++++++++++++++++++++++++++++++++ install/pegaprox-install.sh | 60 ++++++++++++++++++++++++++++++++++ 3 files changed, 130 insertions(+) create mode 100644 ct/headers/pegaprox create mode 100644 ct/pegaprox.sh create mode 100644 install/pegaprox-install.sh diff --git a/ct/headers/pegaprox b/ct/headers/pegaprox new file mode 100644 index 000000000..f2c9ee9b1 --- /dev/null +++ b/ct/headers/pegaprox @@ -0,0 +1,6 @@ + ____ ____ + / __ \___ ____ _____ _/ __ \_________ _ __ + / /_/ / _ \/ __ `/ __ `/ /_/ / ___/ __ \| |/_/ + / ____/ __/ /_/ / /_/ / ____/ / / /_/ /> < +/_/ \___/\__, /\__,_/_/ /_/ \____/_/|_| + /____/ diff --git a/ct/pegaprox.sh b/ct/pegaprox.sh new file mode 100644 index 000000000..b90e1b82c --- /dev/null +++ b/ct/pegaprox.sh @@ -0,0 +1,64 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/PegaProx/project-pegaprox + +APP="PegaProx" +var_tags="${var_tags:-proxmox;management}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_disk="${var_disk:-8}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +var_arm64="${var_arm64:-no}" +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -d /opt/pegaprox ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + if check_for_gh_release "pegaprox" "PegaProx/project-pegaprox"; then + msg_info "Stopping Service" + systemctl stop pegaprox + msg_ok "Stopped Service" + + create_backup /opt/pegaprox/config /etc/pegaprox/secret.key + + CLEAN_INSTALL=1 fetch_and_deploy_gh_release "pegaprox" "PegaProx/project-pegaprox" "tarball" + + msg_info "Updating Python Environment" + $STD uv venv --python 3.12 /opt/pegaprox/venv + $STD uv pip install --python /opt/pegaprox/venv/bin/python -r /opt/pegaprox/requirements.txt + msg_ok "Updated Python Environment" + + restore_backup + + msg_info "Starting Service" + systemctl start pegaprox + msg_ok "Started Service" + msg_ok "Updated successfully!" + fi + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} Access it using the following URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}https://${IP}:5000${CL}" diff --git a/install/pegaprox-install.sh b/install/pegaprox-install.sh new file mode 100644 index 000000000..c8f2bf18c --- /dev/null +++ b/install/pegaprox-install.sh @@ -0,0 +1,60 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/PegaProx/project-pegaprox + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" +$STD apt install -y sshpass +msg_ok "Installed Dependencies" + +PYTHON_VERSION="3.12" setup_uv + +fetch_and_deploy_gh_release "pegaprox" "PegaProx/project-pegaprox" "tarball" + +msg_info "Setting up Python Environment" +$STD uv venv --python 3.12 /opt/pegaprox/venv +$STD uv pip install --python /opt/pegaprox/venv/bin/python -r /opt/pegaprox/requirements.txt +msg_ok "Set up Python Environment" + +msg_info "Generating Master Key" +mkdir -p /etc/pegaprox +cat </etc/pegaprox/secret.key +$(openssl rand -base64 32 | tr '+/' '-_') +EOF +chmod 600 /etc/pegaprox/secret.key +msg_ok "Generated Master Key" + +msg_info "Creating Service" +cat </etc/systemd/system/pegaprox.service +[Unit] +Description=PegaProx - Multi-Cluster Proxmox VE Management +After=network-online.target +Wants=network-online.target + +[Service] +Type=simple +User=root +WorkingDirectory=/opt/pegaprox +ExecStart=/opt/pegaprox/venv/bin/python /opt/pegaprox/pegaprox_multi_cluster.py +Restart=on-failure +RestartSec=5 + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now pegaprox +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc