summaryrefslogtreecommitdiff
path: root/developer-guides
diff options
context:
space:
mode:
authorMatt Bogosian <mtb19@columbia.edu>2015-05-07 12:04:31 -0700
committerMatt Bogosian <mtb19@columbia.edu>2015-05-07 12:04:31 -0700
commit8b6e9102beb4fc7914000c10e0b0ef99b5245fbf (patch)
tree6239877a2e318f78943caa73ed91b8d92755e9af /developer-guides
parentf3f8354b3ab7ece1e62212d12f6cdd0b21e7b6cf (diff)
Fix environment variable error in Vagrant docs: `KUBERNETES_MASTER_MINION` -> `KUBERNETES_MINION_MEMORY`.
Diffstat (limited to 'developer-guides')
-rw-r--r--developer-guides/vagrant.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/developer-guides/vagrant.md b/developer-guides/vagrant.md
index baf40b97..50c9769a 100644
--- a/developer-guides/vagrant.md
+++ b/developer-guides/vagrant.md
@@ -328,7 +328,7 @@ If you need more granular control, you can set the amount of memory for the mast
```sh
export KUBERNETES_MASTER_MEMORY=1536
-export KUBERNETES_MASTER_MINION=2048
+export KUBERNETES_MINION_MEMORY=2048
```
#### I ran vagrant suspend and nothing works!