From 16661dc621035f24a5088bfa6cd3dfacd53b55b4 Mon Sep 17 00:00:00 2001 From: Scott Mebberson Date: Fri, 22 May 2020 16:16:54 +0930 Subject: [PATCH 1/5] Updates c mk start to state use of a CNI network plugin. --- bin/c-mk-start.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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` ); From 81d75bc0bbf615104b2df3cf6e04c251254544c5 Mon Sep 17 00:00:00 2001 From: Scott Mebberson Date: Fri, 22 May 2020 16:37:48 +0930 Subject: [PATCH 2/5] Updated the CHANGELOG.md. --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 From 926024462a90b7f4462194b456df5e09891f452e Mon Sep 17 00:00:00 2001 From: Scott Mebberson Date: Fri, 22 May 2020 16:39:09 +0930 Subject: [PATCH 3/5] 4.0.1-0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3fdeb9e..aeff747 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@idearium/cli", - "version": "4.0.0", + "version": "4.0.1-0", "description": "The Idearium cli, which makes working with our projects much easier.", "main": "index.js", "bin": { From 3f9042e7c2cac1c4d6a0ec88880370e62885b0b4 Mon Sep 17 00:00:00 2001 From: Scott Mebberson Date: Fri, 22 May 2020 16:42:10 +0930 Subject: [PATCH 4/5] Updated the prerelease-release script. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aeff747..5290a28 100644 --- a/package.json +++ b/package.json @@ -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": { From 33ad3ba868d8ed988add0beba202f9341ac5462c Mon Sep 17 00:00:00 2001 From: Scott Mebberson Date: Fri, 22 May 2020 16:42:19 +0930 Subject: [PATCH 5/5] 4.0.1-beta.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5290a28..54f125f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@idearium/cli", - "version": "4.0.1-0", + "version": "4.0.1-beta.0", "description": "The Idearium cli, which makes working with our projects much easier.", "main": "index.js", "bin": {