Skip to content

Commit

Permalink
docs: additional info for miniKF
Browse files Browse the repository at this point in the history
  • Loading branch information
wg102 authored May 19, 2021
1 parent 32a6c91 commit 37c5e7c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ context. Here are a couple options for setting that up.
#### Local miniKF Cluster (Preferred)

This deploys a Kubeflow cluster on your local machine and requires at least 50GB
of disk space. First, create the miniKF cluster:
of disk space and the recommanded RAM is 12 Gb. First, create the miniKF cluster:

1. Install Vagrant and Virtual Box.
2. Create a new directory and run `vagrant init arrikto/minikf` and then
Expand All @@ -65,6 +65,17 @@ cluster (typically `user`).
Each time you need to start the cluster, navigate to the directory you created
and run `vagrant up`.

**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.
```
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
#vb.gui = true
# Customize the amount of memory on the VM:
vb.memory = "8192"
end
```

#### Remote AKS Cluster

1. Install Azure CLI `az` and `kubectl`
Expand Down

0 comments on commit 37c5e7c

Please sign in to comment.