Skip to content
/ ansible Public

Automated deployment of the SMI software stack

License

Notifications You must be signed in to change notification settings

SMI/ansible

Repository files navigation

pre-commit.ci status

Ansible

⚠ This repo is in early development ⚠

Automated deployment of the SMI software stack.

The roles in this collection can be used to deploy the following software to a remote target:

Requirements

  • Python 3.10

Usage

The site.yaml playbook will deploy all configured software to the host(s) in the software_host group of your inventory. This can be overridden through the target variable e.g., ansible-playbook ... -e "target=localhost" site.yaml.

Included in the repo are convenience scripts to execute this playbook without an inventory.

Local as user

$ ./bin/deploy-as-user

will execute the playbook as the current user, with the install directory set to ~/opt/epcc/smi.

Local as root

$ ./bin/deploy-as-root

will execute the playbook as the root, with the install directory set to /opt/epcc/smi.

Docker

WIP

$ ./bin/build-docker-aio

will launch a docker image and execute the playbook against it. If the playbook succeeds, the image will be saved and tagged as smi/aio:latest.

Docker Services

Also included are scripts to start/stop containers with the services we depend on (e.g., MongoDB):

$ ./bin/start-docker-services
...
$ ./bin/stop-docker-services

Developing

Please see the CONTRIBUTING guide to get started.