HPC Pack MESOS framework
Перейти к файлу
Zihao Chen 8189eb8eb1
Merge pull request #16 from Azure/users/GitHubPolicyService/a4d0ec5d-86a3-478a-917b-59bec571e86e
Adding Microsoft SECURITY.MD
2023-01-25 12:02:11 +08:00
.idea/inspectionProfiles Merge branch 'client-auth' 2018-07-09 15:50:32 +08:00
test Add delay between tests 2018-07-18 06:56:08 +00:00
.gitignore Add gitignore and logging_aux 2018-03-09 04:31:51 +00:00
.travis.yml Add Travis CI configuration 2018-07-18 16:59:52 +08:00
LICENSE Create LICENSE 2018-09-04 15:09:27 +08:00
Pipfile Add pytz and use utc time 2018-07-11 17:14:06 +08:00
Pipfile.lock Add pytz and use utc time 2018-07-11 17:14:06 +08:00
SECURITY.md Microsoft mandatory file 2023-01-24 16:40:14 +00:00
bringOnline.ps1 Fixed typo. 2018-10-04 18:42:04 +01:00
daemon.ps1 Delete HPC node in daemon. Delete sched task on daemon exit. 2018-03-15 12:28:25 +08:00
hpc_cluster_manager.py #7 Reset idle timeout when other nodes are being provisioning 2018-07-23 16:13:49 +08:00
hpc_cluster_manger_unittest.py Fix signature and unit test of _check_timeout 2018-07-19 15:14:50 +08:00
hpcframework.py #11 Add workaround for MESOS-8631 2018-07-23 16:47:50 +08:00
hpcframework_unittest.py Remove heart beat related part from framework and setup script 2018-07-19 15:11:40 +08:00
logging_aux.py Code format 2018-03-13 17:24:55 +08:00
readme.md Update readme.md 2018-09-26 17:12:05 +08:00
restclient.py Suppress InSecureRequestWarning 2018-07-20 10:44:04 +08:00
setupscript.ps1 Remove heart beat related part from framework and setup script 2018-07-19 15:11:40 +08:00

readme.md

HPC Pack MESOS Framework

Build Status

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

  1. Clone this repository
  2. CD to the project folder
  3. Run command pipenv install
  4. (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