Vagrant VM memory environment variable.

Has Vagrant try to read `KUBERNETES_MEMORY` environment varilable when setting
$vm_mem.

fixes #3792
This commit is contained in:
Ryan Fowler
2015-02-08 17:53:35 -06:00
parent 0059c39211
commit 749ae3d661
2 changed files with 11 additions and 2 deletions

View File

@@ -307,5 +307,14 @@ You can control the number of minions that are instantiated via the environment
export NUM_MINIONS=1
```
#### I want my VMs to have more memory !
You can control the memory allotted to virtual machines with the `KUBERNETES_MEMORY` environment variable.
Just set it to the number of megabytes you would like the machines to have. For example:
```
export KUBERNETES_MEMORY=2048
```
#### I ran vagrant suspend and nothing works!
```vagrant suspend``` seems to mess up the network. It's not supported at this time.