diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d10d08..76ce878 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,9 @@ This file is a history of the changes made to @idearium/cli. -## Unreleased +## v4.0.1-beta.1 - 2020-05-22 + +- Updated `c mk start` to initiate Minikube with a CNI plugin. ## v4.0.0 - 2020-05-06 diff --git a/bin/c-mk-start.js b/bin/c-mk-start.js index 7a76cdf..05dc239 100644 --- a/bin/c-mk-start.js +++ b/bin/c-mk-start.js @@ -17,5 +17,5 @@ const profile = program.P ? ` --profile ${program.P}` : ''; const command = `minikube start${profile}`; exec( - `${command} --disk-size 64g --extra-config=apiserver.service-node-port-range=80-32767 --cpus=2 --memory=8192 --vm-driver=vmware` + `${command} --disk-size 64g --extra-config=apiserver.service-node-port-range=80-32767 --cpus=2 --memory=8192 --network-plugin=cni --vm-driver=vmware` ); diff --git a/package.json b/package.json index 3fdeb9e..54f125f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@idearium/cli", - "version": "4.0.0", + "version": "4.0.1-beta.0", "description": "The Idearium cli, which makes working with our projects much easier.", "main": "index.js", "bin": { @@ -10,7 +10,7 @@ "major-release": "npm version major && npm publish --access=public && git push --follow-tags", "minor-release": "npm version minor && npm publish --access=public && git push --follow-tags", "patch-release": "npm version patch && npm publish --access=public && git push --follow-tags", - "prerelease-release": "npm version prerelease && npm publish --access=public && git push --follow-tags", + "prerelease-release": "npm version prerelease --preid=beta && npm publish --access=public && git push --follow-tags", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": {