From 95b93427039ee3fd55e75fd3dcebf768365f1851 Mon Sep 17 00:00:00 2001 From: Mumshad Date: Wed, 20 Mar 2019 13:21:04 +0800 Subject: [PATCH] few fixes --- docs/03-compute-resources.md | 2 +- vagrant/Vagrantfile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/03-compute-resources.md b/docs/03-compute-resources.md index e11a9eb..f813da0 100644 --- a/docs/03-compute-resources.md +++ b/docs/03-compute-resources.md @@ -8,7 +8,7 @@ Download this github repository and cd into the vagrant folder CD into vagrant directory -`cd kubernetes-the-hard-way.git\vagrant` +`cd kubernetes-the-hard-way\vagrant` Run Vagrant up diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 2809000..338ca59 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -70,7 +70,6 @@ Vagrant.configure("2") do |config| s.args = ["enp0s8"] end - node.vm.provision "allow-bridge-nf-traffic", :type => "shell", :path => "ubuntu/allow-bridge-nf-traffic.sh" node.vm.provision "setup-dns", type: "shell", :path => "ubuntu/update-dns.sh" end @@ -111,9 +110,9 @@ Vagrant.configure("2") do |config| s.args = ["enp0s8"] end - node.vm.provision "allow-bridge-nf-traffic", :type => "shell", :path => "ubuntu/allow-bridge-nf-traffic.sh" node.vm.provision "setup-dns", type: "shell", :path => "ubuntu/update-dns.sh" node.vm.provision "install-docker", type: "shell", :path => "ubuntu/install-docker.sh" + node.vm.provision "allow-bridge-nf-traffic", :type => "shell", :path => "ubuntu/allow-bridge-nf-traffic.sh" end end