Collection of Redbrick's Nomad job files, with ansible scripts to help deploy and manage it
Find a file
distrobyte 4d3c69a710 Add job for a nova-timetable user project
This file directory structure can be used for 4th year projects
(user-projects/(third/fourth)-year-project)

I can't validate this, but checkout this branch on one of the hosts and
run `nomad job validate <path>` to ensure the config is okay, followed
by `nomad job plan <path>` to plan it. Run the job at that point using
the check-id. Once you're happy that it runs, return to the master
branch and merge this PR.

nova@redbrick.dcu.ie requested this to be deployed.

A DNS entry will need to be made before planning to ensure that the cert
can be generated by traefik.
2023-10-04 19:34:42 +01:00
ansible Merge branch 'master' of github.com:redbrick/nomad 2023-09-01 01:14:47 +01:00
jobs Add job for a nova-timetable user project 2023-10-04 19:34:42 +01:00
.gitignore update permissions 2023-03-18 13:13:16 +00:00
README.md update permissions 2023-03-18 13:13:16 +00:00

Redbrick Nomad Configs and Ansible Scripts

This repo contains all of Redbrick's infrastructure that is deployed through Hashicorp's Nomad and uses ansible to configure and manage the hosts.

Nomad

All Nomad job related configurations are stored in the nomad directory.

The terminology used here is explained here. This is required reading.

All of the job files are stored in the nomad directory. To deploy a Nomad job manually, connect to a host and run

$ nomad job plan path/to/job/file.hcl

This will plan the allocations and ensure that what is deployed is the correct version.

If you are happy with the deployment, run

$ nomad job run -check-index [id from last command] path/to/job/file.hcl

This will deploy the planned allocations, and will error if the file changed on disk between the plan and the run.

You can shorten this command to just

$ nomad job plan path/to/file.hcl | grep path/to/file.hcl | bash

This will plan and run the job file without the need for you to copy and paste the check index id. Only use this once you are comfortable with how Nomad places allocations.

Ansible

Ansible can be used to provision a new host, connect a host to the cluster, run new jobs and more.

Install ansible from here.

In order to use ansible from your local machine, you must have access to the admin VPN. This will allow you direct connection to each of the hosts.

Move the ansible/group_vars/all.yml.sample file to ansible/group_vars/all.yml and change your local username before you run any of these playbooks. Your local user should have an SSH key in its home dir, which can be configured with the ssh playbook.

$ ansible-playbook -i hosts redbrick-ansible.yml