Minishift

昨日作った Minishift ですが、ネットワーク共有の設定が変わってしまって Wi-Fi が繋がらなくなったため、よくわかっている VirtualBox を使うようにしてみました。

メモリも 2GB から 16GB に増やしてます。

$ brew uninstall docker-machine-driver-xhyve
Uninstalling /usr/local/Cellar/docker-machine-driver-xhyve/0.3.3... (3 files, 10.5MB)
$ minishift config set memory 16384
You currently have an existing Minishift instance. Changes to the 'memory' setting are only applied when a new Minishift instance is created.
To let the configuration changes take effect, you must delete the current instance with 'minishift delete' and then start a new one with 'minishift start'.
$ minishift config view
- memory               : 16384
$
$ minishift start --vm-driver=virtualbox
...
OpenShift server started.

The server is accessible via web console at:
    https://192.168.99.100:8443

You are logged in as:
    User:     developer
    Password: 

To login as administrator:
    oc login -u system:admin

-- Exporting of OpenShift images is occuring in background process with pid 39907.
$

CPUの数も増やしてみました。設定は config に設定しておくといいようです。

$ minishift config set cpus 4
$ minishift config set memory 16384
$ minishift config set vmdriver virtualbox