Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start Minikube with a CNI network plugin #38

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion bin/c-mk-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`
);
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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": {
Expand Down