aboutsummaryrefslogtreecommitdiffstats
path: root/local_testing/README.md
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-08-13 14:59:36 +0100
committerGravatar Chris Lovering <[email protected]>2023-08-13 15:54:03 +0100
commit431585b5256a0d08f4f3c33122465a88a93ddcb1 (patch)
tree4cc41cda81655332fa467e6c9c85d1ee9c35b90e /local_testing/README.md
parentServe static files from Turing (#116) (diff)
Move all ansible files to their own folder
Diffstat (limited to 'local_testing/README.md')
-rw-r--r--local_testing/README.md50
1 files changed, 0 insertions, 50 deletions
diff --git a/local_testing/README.md b/local_testing/README.md
deleted file mode 100644
index db3c409..0000000
--- a/local_testing/README.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# Testing Locally
-
-### Requirements
-
-- [Vagrant](https://developer.hashicorp.com/vagrant/docs/installation)
-- [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
-
-## Get Started
-
-```shell
-vagrant up # This will take a while
-vagrant ssh # Get a shell, password=vagrant
-
-# inside control VM
-/vagrant/scripts/push-keys # Push the control VM's ssh key to all nodes
-
-# run ansible
-cd infra
-# if you're on Windows, the `infra` directory will be mounted with permissions set to 777
-# which ansible will reject as insecure
-# export the below environment variable to force anisble to accept the writable config
-# export ANSIBLE_CONFIG='/home/vagrant/infra/ansible.cfg'
-ansible-playbook playbook.yml --inventory local_testing/hosts.yaml --user vagrant
-```
-
-Below are the IPs of the VMs on the VirtualBox network
-```yaml
-vms:
-- control: 192.168.56.1
-- hopper: 192.168.56.2
-- lovelace: 192.168.56.3
-- neumann: 192.168.56.4
-- richie: 192.168.56.5
-- turing: 192.168.56.6
-```
-
-
-# Fixes/Notes
-
-### There was an error when attempting to rsync a synced folder.
-
-```shell
-vagrant plugin install vagrant-vbguest
-```
-
-
-### Kernel module is not loaded
-```shell
-sudo modprobe vbox{drv,netadp,netflt}
-```