mmumshad / kubernetes-the-hard-way

Bootstrap Kubernetes the hard way on Vagrant on Local Machine. No scripts.
Apache License 2.0
4.7k stars 4.54k forks source link

Running E2E test suites cause master-1 used up space. #160

Closed chunji08 closed 4 years ago

chunji08 commented 4 years ago

Hi there, I have followed your instruction to successfully set-up a cluster on my Mac. But when I was to following the instruction on this page https://github.com/mmumshad/kubernetes-the-hard-way/blob/master/docs/16-e2e-tests.md

to try the certification test suite session as this,

kubetest --provider=skeleton --test --test_args=”--ginkgo.focus=[Conformance]” --extract ${K8S_VERSION} | tee test.out

it is running out of space on master-1.

So the question is, What is the command to add extra space on "master-1"

Thanks

Chun

chunji08 commented 4 years ago

For those who have the similar issue as I had reported above, here is the solution I have found.

  1. After the vagrant has been installed, run this command: vagrant plugin install vagrant-disksize

  2. In your Vagrantfile file, adding such line to customize the storage size: config.disksize.size = "20GB"

...

chunji08 commented 4 years ago

solved by myself.