├── LICENSE ├── README.md ├── additional_scripts └── install_singularity.sh ├── configuration_settings.txt ├── dependencies ├── etc │ ├── cron.monthly │ │ └── logstash_geoip_update │ ├── filebeat │ │ └── filebeat.yml │ ├── genders │ ├── init.d │ │ └── nvidia │ ├── logrotate.d │ │ └── slurm │ ├── logstash │ │ └── conf.d │ │ │ ├── 10-beats-input.conf │ │ │ ├── 20-syslog-filters.conf │ │ │ ├── 90-elasticsearch-output.conf │ │ │ └── 91-additional-output.conf │ ├── microway │ │ └── mcms_database.conf │ ├── nhc │ │ ├── compute-node-checks.conf │ │ ├── compute-node-checks_blocking-io.conf │ │ └── compute-node-checks_intense.conf │ ├── nvidia-healthmon.conf │ ├── slurm │ │ ├── cgroup.conf │ │ ├── cgroup_allowed_devices_file.conf │ │ ├── gres.conf │ │ ├── plugstack.conf │ │ ├── plugstack.conf.d │ │ │ └── x11.conf │ │ ├── scripts │ │ │ ├── slurm.epilog │ │ │ ├── slurm.healthcheck │ │ │ ├── slurm.healthcheck_long │ │ │ ├── slurm.jobstart_messages.sh │ │ │ ├── slurmctld.power_nodes_off │ │ │ ├── slurmctld.power_nodes_on │ │ │ ├── slurmctld.power_nodes_on_as_root │ │ │ ├── slurmctld.prolog │ │ │ └── slurmd.gres_init │ │ ├── slurm.conf │ │ └── slurmdbd.conf │ └── sysconfig │ │ ├── nhc │ │ └── nvidia ├── opt │ └── ohpc │ │ └── pub │ │ └── modulefiles │ │ └── cuda.lua ├── usr │ └── lib │ │ └── systemd │ │ └── system │ │ └── nvidia-gpu.service └── var │ └── spool │ └── slurmd │ └── validate-ssh-command ├── install_head_node.sh ├── install_login_server.sh └── install_monitoring_server.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/README.md -------------------------------------------------------------------------------- /additional_scripts/install_singularity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/additional_scripts/install_singularity.sh -------------------------------------------------------------------------------- /configuration_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/configuration_settings.txt -------------------------------------------------------------------------------- /dependencies/etc/cron.monthly/logstash_geoip_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/cron.monthly/logstash_geoip_update -------------------------------------------------------------------------------- /dependencies/etc/filebeat/filebeat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/filebeat/filebeat.yml -------------------------------------------------------------------------------- /dependencies/etc/genders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/genders -------------------------------------------------------------------------------- /dependencies/etc/init.d/nvidia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/init.d/nvidia -------------------------------------------------------------------------------- /dependencies/etc/logrotate.d/slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/logrotate.d/slurm -------------------------------------------------------------------------------- /dependencies/etc/logstash/conf.d/10-beats-input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/logstash/conf.d/10-beats-input.conf -------------------------------------------------------------------------------- /dependencies/etc/logstash/conf.d/20-syslog-filters.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/logstash/conf.d/20-syslog-filters.conf -------------------------------------------------------------------------------- /dependencies/etc/logstash/conf.d/90-elasticsearch-output.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/logstash/conf.d/90-elasticsearch-output.conf -------------------------------------------------------------------------------- /dependencies/etc/logstash/conf.d/91-additional-output.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/logstash/conf.d/91-additional-output.conf -------------------------------------------------------------------------------- /dependencies/etc/microway/mcms_database.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/microway/mcms_database.conf -------------------------------------------------------------------------------- /dependencies/etc/nhc/compute-node-checks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/nhc/compute-node-checks.conf -------------------------------------------------------------------------------- /dependencies/etc/nhc/compute-node-checks_blocking-io.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/nhc/compute-node-checks_blocking-io.conf -------------------------------------------------------------------------------- /dependencies/etc/nhc/compute-node-checks_intense.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/nhc/compute-node-checks_intense.conf -------------------------------------------------------------------------------- /dependencies/etc/nvidia-healthmon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/nvidia-healthmon.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/cgroup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/cgroup.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/cgroup_allowed_devices_file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/cgroup_allowed_devices_file.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/gres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/gres.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/plugstack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/plugstack.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/plugstack.conf.d/x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/plugstack.conf.d/x11.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurm.epilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurm.epilog -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurm.healthcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurm.healthcheck -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurm.healthcheck_long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurm.healthcheck_long -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurm.jobstart_messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurm.jobstart_messages.sh -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurmctld.power_nodes_off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurmctld.power_nodes_off -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurmctld.power_nodes_on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurmctld.power_nodes_on -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurmctld.power_nodes_on_as_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurmctld.power_nodes_on_as_root -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurmctld.prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurmctld.prolog -------------------------------------------------------------------------------- /dependencies/etc/slurm/scripts/slurmd.gres_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/scripts/slurmd.gres_init -------------------------------------------------------------------------------- /dependencies/etc/slurm/slurm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/slurm.conf -------------------------------------------------------------------------------- /dependencies/etc/slurm/slurmdbd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/slurm/slurmdbd.conf -------------------------------------------------------------------------------- /dependencies/etc/sysconfig/nhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/sysconfig/nhc -------------------------------------------------------------------------------- /dependencies/etc/sysconfig/nvidia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/etc/sysconfig/nvidia -------------------------------------------------------------------------------- /dependencies/opt/ohpc/pub/modulefiles/cuda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/opt/ohpc/pub/modulefiles/cuda.lua -------------------------------------------------------------------------------- /dependencies/usr/lib/systemd/system/nvidia-gpu.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/usr/lib/systemd/system/nvidia-gpu.service -------------------------------------------------------------------------------- /dependencies/var/spool/slurmd/validate-ssh-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/dependencies/var/spool/slurmd/validate-ssh-command -------------------------------------------------------------------------------- /install_head_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/install_head_node.sh -------------------------------------------------------------------------------- /install_login_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/install_login_server.sh -------------------------------------------------------------------------------- /install_monitoring_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microway/MCMS-OpenHPC-Recipe/HEAD/install_monitoring_server.sh --------------------------------------------------------------------------------