3.1 KiB
HPC Pack MESOS Framework
A MESOS scheduler framework, which accepts offers from MESOS master and builds HPC Pack compute nodes for existing HPC cluster.
Why do I need HPC Pack MESOS Framework
With the help of HPC Pack MESOS Framework, resource allocation of Microsoft HPC Pack cluster can be managed by existing MESOS cluster, which increases resource utilization.
What can HPC Pack MESOS Framework do
HPC Pack Mesos Framework
-
Borrows HPC Pack compute nodes from Mesos cluster, if
- HPC Pack has queueing tasks need more resource
- Mesos cluster has available resource for HPC Pack
-
Returns HPC Pack compute nodes to Mesos cluster, if
- The node reached idle time out of Mesos framework
Get Started
See HPC Pack Mesos Integration Step By Step
Simple Installation Guide
Dependency
- Python 2.7
- pipenv
Installation Steps
- Clone this repository
- CD to the project folder
- Run command
pipenv install
- (Optional) You can get Show help info by typing
pipenv run python hpcframework.py -h
Command-line usage
usage: hpcframework.py [-h] [-g NODE_GROUP] script_path setup_path headnode ssl_thumbprint client_cert
HPC Pack Mesos framework
positional arguments:
script_path Path of HPC Pack Mesos slave setup script (e.g. setupscript.ps1)
setup_path Path of HPC Pack setup executable (e.g. setup.exe)
headnode Hostname of HPC Pack cluster head node
ssl_thumbprint Thumbprint of certificate which will be used in installation and communication with HPC Pack cluster
client_cert .pem file of client cert used for HPC Management REST API authentication
optional arguments:
-h, --help show this help message and exit
-g NODE_GROUP, --node_group NODE_GROUP
The node group in which we need to perform grow-shrink.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
FAQ
Convert .pfx to .pem using OpenSSL
openssl pkcs12 -in file.pfx -out file.pem -nodes