├── .gitignore ├── README.md ├── common ├── example.yml ├── head-setup.sh ├── ood-setup.sh └── slurm-setup.sh ├── docker-with-slurm ├── Dockerfile ├── README.md ├── base-setup.sh ├── docker-compose.yaml ├── head-setup.sh ├── launch-head ├── launch-ood ├── munge.key ├── ood-setup.sh ├── slurm-setup.sh ├── slurm.conf └── slurm.sh ├── docker ├── Dockerfile ├── README.md └── launch-httpd ├── podman ├── README.md ├── bashrc ├── env ├── launch-httpd ├── make-dev-img.sh ├── make-ood-base-img.sh ├── make-personal-img.sh └── ood-container ├── vagrant-el8-with-slurm ├── README.md ├── Vagrantfile ├── hosts ├── munge.key ├── ood-home │ ├── .bashrc │ └── .ssh │ │ ├── authorized_keys │ │ ├── id_rsa │ │ └── id_rsa.pub └── slurm │ └── .keep ├── vagrant-with-gridengine ├── README.md ├── Vagrantfile ├── all.q ├── example_sge.yml ├── gridengine-setup.sh ├── hosts ├── munge.key ├── ood-home │ └── .gitkeep └── sge.conf ├── vagrant-with-lsf ├── README.md ├── Vagrantfile ├── hosts ├── install.config ├── lsf.yml └── ood-home │ └── .gitkeep ├── vagrant-with-pbspro ├── README.md ├── Vagrantfile ├── hosts ├── ood-home │ └── .gitkeep └── pbs.yml ├── vagrant-with-slurm ├── README.md ├── Vagrantfile ├── hosts ├── munge.key └── ood-home │ ├── .bashrc │ └── .ssh │ ├── authorized_keys │ ├── id_rsa │ └── id_rsa.pub ├── vagrant ├── README.md ├── Vagrantfile └── ood-setup.sh └── vm ├── README.md ├── ood-el7.ks ├── ood-el8.ks ├── ood-setup.sh ├── packer.json └── vm-cleanup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/README.md -------------------------------------------------------------------------------- /common/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/common/example.yml -------------------------------------------------------------------------------- /common/head-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/common/head-setup.sh -------------------------------------------------------------------------------- /common/ood-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/common/ood-setup.sh -------------------------------------------------------------------------------- /common/slurm-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/common/slurm-setup.sh -------------------------------------------------------------------------------- /docker-with-slurm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/Dockerfile -------------------------------------------------------------------------------- /docker-with-slurm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/README.md -------------------------------------------------------------------------------- /docker-with-slurm/base-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/base-setup.sh -------------------------------------------------------------------------------- /docker-with-slurm/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/docker-compose.yaml -------------------------------------------------------------------------------- /docker-with-slurm/head-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/head-setup.sh -------------------------------------------------------------------------------- /docker-with-slurm/launch-head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/launch-head -------------------------------------------------------------------------------- /docker-with-slurm/launch-ood: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/launch-ood -------------------------------------------------------------------------------- /docker-with-slurm/munge.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/munge.key -------------------------------------------------------------------------------- /docker-with-slurm/ood-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/ood-setup.sh -------------------------------------------------------------------------------- /docker-with-slurm/slurm-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/slurm-setup.sh -------------------------------------------------------------------------------- /docker-with-slurm/slurm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/slurm.conf -------------------------------------------------------------------------------- /docker-with-slurm/slurm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker-with-slurm/slurm.sh -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/launch-httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/docker/launch-httpd -------------------------------------------------------------------------------- /podman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/README.md -------------------------------------------------------------------------------- /podman/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/bashrc -------------------------------------------------------------------------------- /podman/env: -------------------------------------------------------------------------------- 1 | OOD_APP_DEVELOPMENT=1 2 | -------------------------------------------------------------------------------- /podman/launch-httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/launch-httpd -------------------------------------------------------------------------------- /podman/make-dev-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/make-dev-img.sh -------------------------------------------------------------------------------- /podman/make-ood-base-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/make-ood-base-img.sh -------------------------------------------------------------------------------- /podman/make-personal-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/make-personal-img.sh -------------------------------------------------------------------------------- /podman/ood-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/podman/ood-container -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/README.md -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/Vagrantfile -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/hosts -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/munge.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/munge.key -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/ood-home/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/ood-home/.bashrc -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/ood-home/.ssh/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/ood-home/.ssh/authorized_keys -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/ood-home/.ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/ood-home/.ssh/id_rsa -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/ood-home/.ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-el8-with-slurm/ood-home/.ssh/id_rsa.pub -------------------------------------------------------------------------------- /vagrant-el8-with-slurm/slurm/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant-with-gridengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/README.md -------------------------------------------------------------------------------- /vagrant-with-gridengine/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/Vagrantfile -------------------------------------------------------------------------------- /vagrant-with-gridengine/all.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/all.q -------------------------------------------------------------------------------- /vagrant-with-gridengine/example_sge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/example_sge.yml -------------------------------------------------------------------------------- /vagrant-with-gridengine/gridengine-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/gridengine-setup.sh -------------------------------------------------------------------------------- /vagrant-with-gridengine/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/hosts -------------------------------------------------------------------------------- /vagrant-with-gridengine/munge.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/munge.key -------------------------------------------------------------------------------- /vagrant-with-gridengine/ood-home/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant-with-gridengine/sge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-gridengine/sge.conf -------------------------------------------------------------------------------- /vagrant-with-lsf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-lsf/README.md -------------------------------------------------------------------------------- /vagrant-with-lsf/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-lsf/Vagrantfile -------------------------------------------------------------------------------- /vagrant-with-lsf/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-lsf/hosts -------------------------------------------------------------------------------- /vagrant-with-lsf/install.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-lsf/install.config -------------------------------------------------------------------------------- /vagrant-with-lsf/lsf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-lsf/lsf.yml -------------------------------------------------------------------------------- /vagrant-with-lsf/ood-home/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant-with-pbspro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-pbspro/README.md -------------------------------------------------------------------------------- /vagrant-with-pbspro/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-pbspro/Vagrantfile -------------------------------------------------------------------------------- /vagrant-with-pbspro/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-pbspro/hosts -------------------------------------------------------------------------------- /vagrant-with-pbspro/ood-home/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant-with-pbspro/pbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-pbspro/pbs.yml -------------------------------------------------------------------------------- /vagrant-with-slurm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/README.md -------------------------------------------------------------------------------- /vagrant-with-slurm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/Vagrantfile -------------------------------------------------------------------------------- /vagrant-with-slurm/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/hosts -------------------------------------------------------------------------------- /vagrant-with-slurm/munge.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/munge.key -------------------------------------------------------------------------------- /vagrant-with-slurm/ood-home/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/ood-home/.bashrc -------------------------------------------------------------------------------- /vagrant-with-slurm/ood-home/.ssh/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/ood-home/.ssh/authorized_keys -------------------------------------------------------------------------------- /vagrant-with-slurm/ood-home/.ssh/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/ood-home/.ssh/id_rsa -------------------------------------------------------------------------------- /vagrant-with-slurm/ood-home/.ssh/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant-with-slurm/ood-home/.ssh/id_rsa.pub -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/ood-setup.sh: -------------------------------------------------------------------------------- 1 | ../common/ood-setup.sh -------------------------------------------------------------------------------- /vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vm/README.md -------------------------------------------------------------------------------- /vm/ood-el7.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vm/ood-el7.ks -------------------------------------------------------------------------------- /vm/ood-el8.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vm/ood-el8.ks -------------------------------------------------------------------------------- /vm/ood-setup.sh: -------------------------------------------------------------------------------- 1 | ../common/ood-setup.sh -------------------------------------------------------------------------------- /vm/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vm/packer.json -------------------------------------------------------------------------------- /vm/vm-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSC/ood-images/HEAD/vm/vm-cleanup.sh --------------------------------------------------------------------------------