aboutsummaryrefslogtreecommitdiffstats
path: root/kud
diff options
context:
space:
mode:
Diffstat (limited to 'kud')
-rw-r--r--kud/hosting_providers/vagrant/README.md8
-rwxr-xr-xkud/hosting_providers/vagrant/setup.sh2
2 files changed, 9 insertions, 1 deletions
diff --git a/kud/hosting_providers/vagrant/README.md b/kud/hosting_providers/vagrant/README.md
index f0210149..3d0766b3 100644
--- a/kud/hosting_providers/vagrant/README.md
+++ b/kud/hosting_providers/vagrant/README.md
@@ -23,6 +23,14 @@ its usage. This script supports two Virtualization technologies
$ sudo ./setup.sh -p libvirt
+There is a `default.yml` in the `./config` directory which creates multiple controllers and nodes.
+There are also sample configurations in the `./config/samples` directory. To use one of the samples,
+copy it into the `./config` directory as `pdf.yml`. If a `pdf.yml` exists in the `./config`
+directory it overrides the `default.yml` when the `vagrant up` command (in the next step) is run.
+For example:
+
+ $ cp ./config/samples/pdf.yml.aio ./config/pdf.yml
+
Once Vagrant is installed, it's possible to provision a cluster using
the following instructions:
diff --git a/kud/hosting_providers/vagrant/setup.sh b/kud/hosting_providers/vagrant/setup.sh
index 00b6e86f..79bf60c4 100755
--- a/kud/hosting_providers/vagrant/setup.sh
+++ b/kud/hosting_providers/vagrant/setup.sh
@@ -107,7 +107,7 @@ case ${ID,,} in
case $VAGRANT_DEFAULT_PROVIDER in
virtualbox)
- echo "deb http://download.virtualbox.org/virtualbox/debian trusty contrib" >> /etc/apt/sources.list
+ echo "deb http://download.virtualbox.org/virtualbox/debian bionic contrib" >> /etc/apt/sources.list
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
packages+=(virtualbox-5.1 dkms)