Ansible configuration management for UoM IT Services Lecture Capture Captures Agents.
local running Ansible version ansible 2.1.2.0 + required remote using ubuntu 16.04 remote configured with the user 'galicaster' remote user configured with root level key based ssh access An ssh key file to access the root account on the remote client
to run on localhost:
cp all.example all
make sure you can ssh into localhost using root
account using a private key file
make sure there is a galicaster
user on the system who is a member of the sudoers
group
open a terminal session and execute:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible
using any other type of host group or any of the extra vars may make the run fail without the proper configuration and services being available.
same as above however in hosts file comment out the example host under [capture-agents-v4l2-split]
and uncomment the host under [capture-agents-dual-datapath-split]
you must also download the latest datapath visionLC driver from datapath and place it under capture-agent-ansible/roles/galicaster-capture-agent-datapath-common/files/visiondriver.tar.gz
make sure its named visiondriver.tar.gz
open a terminal session and execute:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible -e force_reboot=true
this will install the datapath visionLC drivers and configure galicaster to use it. there is an optional force reboot to make sure the driver setting stick
all hosts:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass
all staging hosts:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass
just a single host:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass --limit mtt-test-a
specific tag:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass --limit mtt-test-a --tags apt,galicaster
just wifi hosts as a subset:
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass --limit capture-agents-datapath-split-wifi:capture-agents-datapath-usb-wifi:capture-agents-blackmagic-split-wifi:capture-agents-blackmagic-usb-wifi
reinstall hosts (must be on 12.04, precise):
ansible-playbook capture-agent.yml -i hosts --private-key=~/.ssh/ca-ansible --ask-vault-pass -e reinstall_os=true
the special variables are:
reinstall_os=true (reinstall the os if precise)
do_hard_reboot=true (force a shutdown and wakeup on RTC timer)
upgrade_os=true (apt-get dist upgrade)
You can also set ANSIBLE_VAULT_PASSWORD_FILE environment variable, e.g. export ANSIBLE_VAULT_PASSWORD_FILE=~/.vault_pass.txt
and Ansible will automatically search for the password in that file.
All the env vars have been set ready to use, this cuts down on the amount of typing and more importantly prohibits accidental production runs on a staging environment.
ansible-playbook capture-agent.yml --limit <comma separated list of hosts> --tags <comma separated list of tags> --skip-tags <comma separated list of tags to skip>
To run, specifying a hosts file (e.g running prod ansible on staging):
ansible-playbook capture-agent.yml -i hosts --limit <comma separated list of hosts> --tags <comma separated list of tags> --skip-tags <comma separated list of tags to skip>
To get a list of tags:
ansible-playbook capture-agent.yml --list-tags
Example, updating a galicaster conf.ini parameter on evey staging agent:
ansible-playbook capture-agent.yml --limit mtt-test-* --tags galicaster_config --skip-tags cronjobs,scripts