mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
No description
Update the UI boot order selection element. It has been modified to support the new 'order=' format for the Proxmox boot order option in a more intuitive way for the user. The new element allows users to enable any bootable device and choose the order for these devices to boot in. The new UI element is a table with four columns. The first column indicates the order of the corresponding device. The second column indicates whether the device is enabled as bootable. The third column contains the device name. The fourth column contains the device description. The order of the columns is changed by dragging, enabled by SortableJS. In cases of legacy nodes, the older dropdown boxes are used. |
||
---|---|---|
.github | ||
proxstar | ||
.gitignore | ||
.gitmodules | ||
.pylintrc | ||
config.py | ||
gunicorn_conf.py | ||
LICENSE.txt | ||
pyproject.toml | ||
README.md | ||
requirements.txt | ||
rqsettings.py | ||
start_scheduler.sh | ||
start_worker.sh | ||
wsgi.py |
Proxstar
Proxstar is a proxmox VM web management tool used by Rochester Institute of Technology's Computer Science House.
Overview
Proxstar removes the need for CSH members to have direct access to the proxmox web interface.
Proxstar is also used to enforce proxmox resource limits automagically.
It is available to house members at proxstar.csh.rit.edu behind PYOIDC authentication.
Contributing
- Fork this repository
- Optionally create a new git branch if your change is more than a small tweak (
git checkout -b BRANCH-NAME-HERE
)
- Make your changes locally, commit, and push to your fork
- If you want to test locally, you should copy
config.py
toconfig_local.py
, and talk to an RTP about filling in secrets. - Lint and your local changes with
pylint proxstar
andblack proxstar
- You'll need dependencies installed locally to do this. You should do that in a venv of some sort to keep your system clean. All the dependencies are listed in requirements.txt, so you can install everything with
pip install -r requirements.txt
. You'll need python 3.6 at minimum, though things should work up to python 3.8.
- You'll need dependencies installed locally to do this. You should do that in a venv of some sort to keep your system clean. All the dependencies are listed in requirements.txt, so you can install everything with
- Create a Pull Request on this repo for our Webmasters to review
Questions/Concerns
Please file an Issue on this repository.