HPC Resource Allocation System
Project description
Coldfront - Resource Allocation System
Coldfront is an open source resource allocation system designed to provide a central portal for administration, reporting, and measuring scientific impact of HPC resources. Coldfront was created to help HPC centers manage access to a diverse set of resources across large groups of users and provide a rich set of extensible meta data for comprehensive reporting. Coldfront is written in Python and released under the GPLv3 license.
Features
- Allocation/Subscription based system for managing access to resources
- Collect Project, Grant, and Publication data from users
- Define custom attributes on resources and subscriptions
- Email notifications for expiring/renewing access to resources
- Integration with 3rd party systems for automation and access control
- Center director approval system and annual project reviews
Quick Install
- Coldfront requires Python 3.6, memcached, and redis.
CentOS (7.5)
Install EPEL then install required packages:
sudo yum install epel-release
sudo yum install python36 python36-devel memcached redis
Ubuntu (16.04)
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6 python3.6-venv memcached redis-server
- Clone Coldfront in a new directory and create a Python virtual environment for Coldfront
mkdir coldfront_app
cd coldfront_app
git clone https://github.com/ubccr/coldfront.git
python3.6 -mvenv venv
- Activate the virtual environment and install the required Python packages
source venv/bin/activate
cd coldfront
pip install wheel
pip install -r requirements.txt
- Copy config/local_settings.py.sample to config/local_settings.py.
cp config/local_settings.py.sample config/local_settings.py
Open config/local_settings.py and update the following:
- Update
SECRET_KEY
. Consider making the length at least 50 characters long. - Update
TIME_ZONE
if necessary
- Copy config/local_strings.py.sample to config/local_strings.py and update if desired.
cp config/local_strings.py.sample config/local_strings.py
- Run initial setup
python manage.py initial_setup
- Setup an admin user
python manage.py createsuperuser
- Optional: Add some test data
python manage.py load_test_data
- Start development server
python manage.py runserver 0.0.0.0:8000
- Point your browser to http://localhost:8000
You can log in as admin
with password test1234
.
You can log in as a PI using username ccollins
with password test1234
.
You can log in as center director using username michardson
with password test1234
.
Password for all users is also teset1234
.
Directory structure
- coldfront
- core - The core Coldfront application
- field_of_science
- grant
- portal
- project
- publication
- resource
- subscription
- user
- utils
- libs - Helper libraries
- plugins - Plugins that can be configured in Coldfront
- freeipa
- iquota
- ldap_user_search
- mokey_oidc
- slurm
- system_monitor
- core - The core Coldfront application
License
Coldfront is released under the GPLv3 license. See the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file coldfront-0.0.2.tar.gz
.
File metadata
- Download URL: coldfront-0.0.2.tar.gz
- Upload date:
- Size: 57.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0bb4b86c7120eccb5990c87018daa0d0f875f3412fe6518d3446aabc6cbf5950
|
|
MD5 |
7c0248eb7590a65e1944848b586703b9
|
|
BLAKE2b-256 |
95fd3182d25dee1de5add074228aa971f9a5ded43ad532de60be0198081ce59f
|
File details
Details for the file coldfront-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: coldfront-0.0.2-py3-none-any.whl
- Upload date:
- Size: 109.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7644fe1c8975d7081faf936dbfff6e9cd9cabbc8a5761e9ab7469da423c82c5f
|
|
MD5 |
cd4ad9210f3409463dc5308773d940b5
|
|
BLAKE2b-256 |
8469be9fcedbd94eabb33264eb8cc5154dfa1bdb335ae88d1c563084bf912353
|