File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ context. Here are a couple options for setting that up.
42
42
#### Local miniKF Cluster (Preferred)
43
43
44
44
This deploys a Kubeflow cluster on your local machine and requires at least 50GB
45
- of disk space. First, create the miniKF cluster:
45
+ of disk space and the recommanded RAM is 12 Gb . First, create the miniKF cluster:
46
46
47
47
1 . Install Vagrant and Virtual Box.
48
48
2 . Create a new directory and run ` vagrant init arrikto/minikf ` and then
@@ -65,6 +65,17 @@ cluster (typically `user`).
65
65
Each time you need to start the cluster, navigate to the directory you created
66
66
and run ` vagrant up ` .
67
67
68
+ ** Note** : after some experimentation, it was found that the vagrant file could be modified on line 57 to use 8gb instead of the default 12.
69
+ ```
70
+ config.vm.provider "virtualbox" do |vb|
71
+ # Display the VirtualBox GUI when booting the machine
72
+ #vb.gui = true
73
+
74
+ # Customize the amount of memory on the VM:
75
+ vb.memory = "8192"
76
+ end
77
+ ```
78
+
68
79
#### Remote AKS Cluster
69
80
70
81
1 . Install Azure CLI ` az ` and ` kubectl `
You can’t perform that action at this time.
0 commit comments