Commit Graph

530 Commits (db08552f10366702429ad7d7a37a942affb7ee8b)

Author SHA1 Message Date
Sharif Elgamal 3342d3aa34
Merge pull request #12811 from nbusseneau/pr/fix-virtualbox-ip
virtualbox: change default `host-only-cidr`
2021-11-02 13:38:16 -07:00
Nicolas Busseneau 02a43c52e2
virtualbox: change default `host-only-cidr`
We change the default `--host-only-cidr` to `192.168.59.1/24` in order
to be compatible with the new default host-only networking restrictions
implemented in VirtualBox 6.1.28.

This fixes access denied errors on `minikube start` when using
VirtualBox >= 6.1.28:

```
VBoxManage: error: Code E_ACCESSDENIED (0x80070005) - Access denied (extended info not available)
VBoxManage: error: Context: "EnableStaticIPConfig(Bstr(pszIp).raw(), Bstr(pszNetmask).raw())" at line 242 of file VBoxManageHostonly.cpp
```

More details:

VirtualBox 6.1.28 introduced new restrictions on host-only networking:
https://www.virtualbox.org/wiki/Changelog-6.1#v28

Manual: https://www.virtualbox.org/manual/ch06.html#network_hostonly

> On Linux, Mac OS X and Solaris Oracle VM VirtualBox will only allow IP
> addresses in 192.68.56.0/21 range to be assigned to host-only
> adapters. For IPv6 only link-local addresses are allowed. If other
> ranges are desired, they can be enabled by creating
> /etc/vbox/networks.conf and specifying allowed ranges there. For
> example, to allow 10.0.0.0/8 and 192.168.0.0/16 IPv4 ranges as well as
> 2001::/64 range put the following lines into /etc/vbox/networks.conf:
>
>      * 10.0.0.0/8 192.168.0.0/16
>      * 2001::/64
>
> Lines starting with the hash # are ignored. Next example allows any
> addresses, effectively disabling range control:
>
>      * 0.0.0.0/0 ::/0

These new restrictions manifest in the form of the following issue on
`minikube start` due to the default `--host-only-cidr` used by the
VirtualBox driver being `192.168.99.1/24`:

```console
😄  minikube v1.23.2 on Ubuntu 18.04
  Using the virtualbox driver based on user configuration
👍  Starting control plane node minikube in cluster minikube
🔥  Creating virtualbox VM (CPUs=2, Memory=6000MB, Disk=20000MB) ...
🔥  Deleting "minikube" in virtualbox ...
🤦  StartHost failed, but will try again: creating host: create: creating: Error setting up host only network on machine start: /usr/bin/VBoxManage hostonlyif ipconfig vboxnet0 --ip 192.168.99.1 --netmask 255.255.255.0 failed:
VBoxManage: error: Code E_ACCESSDENIED (0x80070005) - Access denied (extended info not available)
VBoxManage: error: Context: "EnableStaticIPConfig(Bstr(pszIp).raw(), Bstr(pszNetmask).raw())" at line 242 of file VBoxManageHostonly.cpp

🔥  Creating virtualbox VM (CPUs=2, Memory=6000MB, Disk=20000MB) ...
😿  Failed to start virtualbox VM. Running "minikube delete" may fix it: creating host: create: creating: Error setting up host only network on machine start: /usr/bin/VBoxManage hostonlyif ipconfig vboxnet1 --ip 192.168.99.1 --netmask 255.255.255.0 failed:
VBoxManage: error: Code E_ACCESSDENIED (0x80070005) - Access denied (extended info not available)
VBoxManage: error: Context: "EnableStaticIPConfig(Bstr(pszIp).raw(), Bstr(pszNetmask).raw())" at line 242 of file VBoxManageHostonly.cpp

  Exiting due to GUEST_PROVISION: Failed to start host: creating host: create: creating: Error setting up host only network on machine start: /usr/bin/VBoxManage hostonlyif ipconfig vboxnet1 --ip 192.168.99.1 --netmask 255.255.255.0 failed:
VBoxManage: error: Code E_ACCESSDENIED (0x80070005) - Access denied (extended info not available)
VBoxManage: error: Context: "EnableStaticIPConfig(Bstr(pszIp).raw(), Bstr(pszNetmask).raw())" at line 242 of file VBoxManageHostonly.cpp

╭───────────────────────────────────────────────────────────────────────────────────────────╮
│                                                                                           │
│    😿  If the above advice does not help, please let us know:                             │
│    👉  https://github.com/kubernetes/minikube/issues/new/choose                           │
│                                                                                           │
│    Please run `minikube logs --file=logs.txt` and attach logs.txt to the GitHub issue.    │
│                                                                                           │
╰───────────────────────────────────────────────────────────────────────────────────────────╯
```

While the above is the primary error, other errors will be reported if
the adapter already exists (this happens when the adapter was created
before updating to VirtualBox 6.1.28, on a version of VirtualBox without
the new restrictions). Some examples:

```
 Exiting due to IF_VBOX_NOT_VISIBLE: Failed to start host: creating host: create: creating: Error setting up host only network on machine start: The host-only adapter we just created is not visible. This is a well known VirtualBox bug. You might want to uninstall it and reinstall at least version 5.0.12 that is is supposed to fix this issue
```

```
  minikube is unable to connect to the VM: dial tcp 192.168.99.112:22: i/o timeout

	This is likely due to one of two reasons:

	- VPN or firewall interference
	- virtualbox network configuration issue

	Suggested workarounds:

	- Disable your local VPN or firewall software
	- Configure your local VPN or firewall to allow access to 192.168.99.112
	- Restart or reinstall virtualbox
	- Use an alternative --vm-driver
	- Use --force to override this connectivity check

  Exiting due to GUEST_PROVISION: Failed to validate network: dial tcp 192.168.99.112:22: i/o timeout
```

When switching to a valid CIDR, `minikube start` works as usual:

```console
😄  minikube v1.23.2 on Ubuntu 18.04
  Using the virtualbox driver based on user configuration
👍  Starting control plane node minikube in cluster minikube
🔥  Creating virtualbox VM (CPUs=2, Memory=6000MB, Disk=20000MB) ...
🐳  Preparing Kubernetes v1.22.2 on Docker 20.10.8 ...
    ▪ Generating certificates and keys ...
    ▪ Booting up control plane ...
    ▪ Configuring RBAC rules ...
    ▪ Using image gcr.io/k8s-minikube/storage-provisioner:v5
🔎  Verifying Kubernetes components...
🌟  Enabled addons: storage-provisioner, default-storageclass
🏄  Done! kubectl is now configured to use "minikube" cluster and "default" namespace by default
```

Signed-off-by: Nicolas Busseneau <nicolas@isovalent.com>
2021-11-02 15:30:46 +01:00
minikube-bot 79766cee83 bump default/newest kubernetes versions 2021-11-01 08:03:05 +00:00
Steven Powell 2aa49b6295
Merge pull request #12806 from minikube-bot/iso-release-v1.24.0
Update ISO to v1.24.0
2021-10-28 09:55:13 -07:00
minikube-bot c3b8912852 Update ISO to v1.24.0 2021-10-27 23:10:38 +00:00
minikube-bot 3bc369459b Update kicbase to v0.0.28 2021-10-27 19:53:03 +00:00
minikube-bot 054c515c21 Update auto-generated docs and translations 2021-10-14 21:55:10 +00:00
Steven Powell 1a4160e60d
Merge pull request #12081 from spowelljr/buildkitSocket
buildkit socket: Add systemd unit
2021-10-01 20:49:41 -04:00
minikube-bot 7b08ffe352 Updating ISO to v1.23.1-1633115168-12081 2021-10-01 20:04:30 +00:00
minikube-bot 39eb5cb53c Updating kicbase image to v0.0.27-1633027942-12081 2021-09-30 19:21:11 +00:00
Medya Ghazizadeh 2fd09e11a8
Merge pull request #12149 from afbjorklund/build-cp
Build images on the primary control plane
2021-09-27 19:11:04 -07:00
minikube-bot cba41a6868 Update auto-generated docs and translations 2021-09-24 21:55:17 +00:00
minikube-bot 2dd9c28d27 Updating ISO to v1.23.1-1632339185-12081 2021-09-22 20:31:56 +00:00
minikube-bot 4a8f4a1e28 bump default/newest kubernetes versions 2021-09-20 08:02:52 +00:00
Steven Powell 90b7ebb45f
Merge pull request #12492 from minikube-bot/kicbase-release-v0.0.27
Update kicbase to v0.0.27
2021-09-16 22:44:18 -07:00
minikube-bot 1976e1b296 Update kicbase to v0.0.27 2021-09-16 18:55:00 +00:00
minikube-bot f0636429fb Update ISO to v1.23.1 2021-09-16 18:00:10 +00:00
minikube-bot d52130b292 Updating ISO to v1.23.0-1631662909-12425 2021-09-15 00:37:07 +00:00
minikube-bot 030b3837ab Updating kicbase image to v0.0.26-1631295795-12425 2021-09-14 09:50:53 -07:00
minikube-bot 67b82f3fe1 Update kicbase to v0.0.26 2021-09-03 02:18:31 +00:00
minikube-bot 703324b7c7 Updating kicbase image to v0.0.25-1630631232-12398 2021-09-03 01:36:51 +00:00
minikube-bot 9597ac2f89 Update ISO to v1.23.0 2021-09-02 18:39:41 +00:00
Medya Ghazizadeh 3469c77ffa
Merge pull request #12351 from raghavendra-talur/rtalur-add-disks-kvm2
Add `--extra-disks` capability to kvm2 driver
2021-08-30 16:50:58 -07:00
Medya Ghazizadeh 219580efcc
Merge pull request #12325 from prezha/fix-ingress-v1.22
Bump default Kubernetes version to v1.22.1 and update addons to with new API (ingress, gcpauth, olm and cilium)
2021-08-25 10:48:14 -07:00
Raghavendra Talur dceb676527 Add extra disks capability to kvm2 driver
Having additional disks on the nodes is a requirement for developers
working on the storage components in Kubernetes. This commit adds the
extra-disks feature to the kvm2 driver.

Signed-off-by: Raghavendra Talur <raghavendra.talur@gmail.com>
2021-08-25 00:15:02 -04:00
Predrag Rogic abd52901cf
fix ingress for k8s v1.22+ 2021-08-24 18:05:44 +01:00
Predrag Rogic 6efbd1ce13
merge 2021-08-24 04:20:52 +01:00
Anders F Björklund 817f8b4b70 Add also stand-alone image push matching pull
Normally this is done as part of image build
2021-08-22 20:11:19 +02:00
Anders F Björklund 380b846715 Add stand-alone image pull and image tag commands
Needed for testing, but maybe elsewhere as well
2021-08-22 19:52:07 +02:00
Medya Ghazizadeh 2df63c00af
Merge pull request #12263 from afbjorklund/env-format
Add output parameter to the docker-env none shell
2021-08-17 00:13:55 -07:00
Anders F Björklund 9e588e6ba1 Add stand-alone image pull and image tag commands
Needed for testing, but maybe elsewhere as well
2021-08-15 20:22:24 +02:00
minikube-bot d7484e41ee Updating ISO to v1.22.0-1628974786-12268 2021-08-14 22:13:14 +00:00
Anders F Björklund 68197de861
Add command to save images from the cluster
This is the opposite command of "minikube image load",
and can be used after doing a "minikube image build".

The default is to save images in the cache, but it is
also possible to save to files or to standard output.
2021-08-13 23:28:25 +01:00
Anders F Björklund 4f8adb6f6d Add output parameter to the docker-env none shell
Allows structured output as json and yaml, in addition to the
previous text output format. Note that keys might not be sorted.
2021-08-13 23:31:05 +02:00
Medya Ghazizadeh 0bd906077f
Revert "new `image save` command" 2021-08-13 14:06:42 -07:00
Medya Ghazizadeh 41ba49d597
Merge pull request #12162 from afbjorklund/image-save-cmd
Image save command
2021-08-13 13:02:58 -07:00
minikube-bot d7681967bf Updating ISO to v1.22.0-1628622362-12032 2021-08-10 20:06:04 +00:00
minikube-bot 6cecbf6fe5 Updating kicbase image to v0.0.25-1628619379-12032 2021-08-10 18:33:49 +00:00
Anders F Björklund b75bf27942 Add command to save images from the cluster
This is the opposite command of "minikube image load",
and can be used after doing a "minikube image build".

The default is to save images in the cache, but it is
also possible to save to files or to standard output.
2021-08-10 09:49:23 +02:00
Anders F Björklund 2ab5c86a88 Build images on the primary control plane
Allow selecting another node using --node

Or continue build on all nodes with --all
2021-08-06 19:04:51 +02:00
minikube-bot 3dccb2bea0 Updating ISO to v1.22.0-1628238775-12122 2021-08-06 09:27:20 +00:00
minikube-bot 16f5466439 Updating ISO to v1.22.0-1628159026-12129 2021-08-05 11:19:56 +00:00
minikube-bot 6aa3c7ff11 Updating ISO to v1.22.0-1627488369-11483 2021-07-28 17:03:32 +00:00
Medya Ghazizadeh 2b84cb9a71
Merge pull request #12052 from minikube-bot/auto_bump_k8s_versions
bump default/newest kubernetes versions
2021-07-27 15:00:24 -07:00
Medya Ghazizadeh 3375c39c76
Merge pull request #11981 from de-sh/vb-warn
Add message to discourage the use of the virtualbox driver
2021-07-26 17:30:38 -07:00
minikube-bot bb1af92e41 Update auto-generated docs and translations 2021-07-26 22:32:47 +00:00
minikube-bot 190226eb07 bump default/newest kubernetes versions 2021-07-26 08:03:10 +00:00
minikube-bot 839b0fbdbc bump default/newest kubernetes versions 2021-07-19 08:02:48 +00:00
Devdutt Shenoi 0e665930e8 Add message to discourage the use of virtualbox driver 2021-07-14 15:00:22 +05:30
Sharif Elgamal 6b6a7c0192
Merge pull request #11956 from minikube-bot/auto_bump_k8s_versions
bump default/newest kubernetes versions
2021-07-13 14:15:29 -07:00
Steven Powell 961bbbe0aa
Merge pull request #11553 from zigarn/dashboard-set-port
Allow to set the dashboard proxyfied port
2021-07-12 16:53:32 +00:00
minikube-bot 35253acf40 bump default/newest kubernetes versions 2021-07-12 08:02:55 +00:00
minikube-bot 058d2b4201 bump default/newest kubernetes versions 2021-07-05 08:02:58 +00:00
Alexandre Garnier f76b0795d8 Allow to set the dashboard proxyfied port 2021-07-03 15:59:59 +02:00
minikube-bot 0e60bdd8f3 Update auto-generated docs and translations 2021-07-02 21:34:57 +00:00
Steven Powell c29adeaa06
Merge pull request #11864 from minikube-bot/auto_bump_k8s_versions
bump default/newest kubernetes versions
2021-07-02 21:32:45 +00:00
minikube-bot 539be93523 Update auto-generated docs and translations 2021-07-02 17:16:58 +00:00
Medya Ghazizadeh 8667d10572
Merge pull request #11876 from minikube-bot/kicbase-release-v0.0.25
Update kicbase to v0.0.25
2021-07-02 10:07:45 -04:00
minikube-bot db8ceca6ed Update ISO to v1.22.0 2021-07-02 01:00:03 +00:00
minikube-bot 4db717a5eb Update kicbase to v0.0.25 2021-07-01 23:38:36 +00:00
Sharif Elgamal 494a24abcc
Merge pull request #11834 from andriyDev/AutoPause
Add support for other container runtimes for auto-pause
2021-07-01 16:01:27 -07:00
minikube-bot 914c5801ce Update auto-generated docs and translations 2021-07-01 21:17:23 +00:00
minikube-bot 1a5b4ac397 bump default/newest kubernetes versions 2021-07-01 20:49:00 +00:00
minikube-bot 202e2fa36f Updating kicbase image to v0.0.24-1625170572-11834 2021-07-01 20:31:45 +00:00
minikube-bot 2bf9076527 Updating kicbase image to v0.0.24-1625086337-11824 2021-06-30 21:07:40 +00:00
minikube-bot 8e62a7d4a0 Update ISO to v1.22.0-beta.0 2021-06-29 19:32:53 +00:00
Ilya Zuyev 68c4d072fe Revert "Merge pull request #11688 from afbjorklund/buildroot-2021.02"
This reverts commit 02abe7856c, reversing
changes made to 4d078ae82f.
2021-06-28 17:11:11 -07:00
Ilya Zuyev 51d2e89fe4 Revert "Merge pull request #11778 from minikube-bot/iso-release-v1.22.0-beta.0"
This reverts commit fd703f95f6, reversing
changes made to 0b170db6cd.
2021-06-28 17:11:05 -07:00
ilya-zuyev fd703f95f6
Merge pull request #11778 from minikube-bot/iso-release-v1.22.0-beta.0
Update ISO to v1.22.0-beta.0
2021-06-28 12:48:11 -07:00
Sharif Elgamal 0b170db6cd
Merge pull request #11772 from minikube-bot/kicbase-release-v0.0.24
Update kicbase to v0.0.24
2021-06-28 10:56:18 -07:00
Steven Powell e8b3db9485
Merge pull request #11692 from spowelljr/addNoLimit
Add ability to pass 'max' value to memory and cpus flags
2021-06-28 17:09:32 +00:00
minikube-bot f2c8ac2f7e Update ISO to v1.22.0-beta.0 2021-06-28 01:20:41 +00:00
minikube-bot bce90e5037 Update kicbase to v0.0.24 2021-06-25 23:41:39 +00:00
minikube-bot edab19ddef Updating ISO to v1.21.0-1624660371-11688 2021-06-25 23:23:12 +00:00
minikube-bot 203d1b6b0e Updating ISO to v1.21.0-1624560657-11688 2021-06-25 13:44:30 -07:00
minikube-bot 4a54d5b93c Updating ISO to v1.21.0-1624344650-11688 2021-06-25 13:44:28 -07:00
Steven Powell 6799b19972 use constant for flag description 2021-06-25 10:49:28 -07:00
Steven Powell a2ae86cb7c renamed flag value from nolimit to max 2021-06-25 10:49:28 -07:00
Steven Powell 08c8996234 updated docs 2021-06-25 10:49:28 -07:00
Ilya Zuyev 3ef400ddee Merge branch 'master' into ilyaz/fix_vm_ctrd_timeout 2021-06-21 14:55:01 -07:00
Sharif Elgamal cf4078ad1a
Merge pull request #11576 from JacekDuszenko/fix-embed-certs-from-config
Fix embed-certs global config
2021-06-21 11:33:11 -07:00
Daehyeok Mun cd1adcf35d Remove unused config options 2021-06-18 11:54:47 -04:00
minikube-bot 9d94dcb734 Updating ISO to v1.21.0-1623378770-11632 2021-06-11 03:27:59 +00:00
Sharif Elgamal 17a047340d
Merge pull request #11611 from minikube-bot/iso-release-v1.21.0
Update ISO to v1.21.0
2021-06-09 15:27:11 -07:00
minikube-bot 0bf3855ee1 Update ISO to v1.21.0 2021-06-09 01:11:03 +00:00
minikube-bot 64a41824c5 Update kicbase to v0.0.23 2021-06-09 00:28:52 +00:00
JacekDuszenko b7a6dd0b5e implement embed certs global config as EmbedCerts 2021-06-05 23:59:45 +01:00
Medya Ghazizadeh 0b83c00ef2
Merge pull request #11525 from medyagh/bump_k8s
bump default k8s version and newest
2021-06-01 17:53:54 -07:00
Medya Gh 7f528a4061 bump default k8s version and newest 2021-05-27 12:57:23 -07:00
Sharif Elgamal e1b4e70c62 generate-docs 2021-05-26 15:34:51 -07:00
Medya Gh e4374e2189 geneate docs 2021-05-17 18:35:37 -07:00
ilya-zuyev 2a2ffeb380
Merge pull request #11304 from daehyeok/copy_node
Implement target node option for cp command
2021-05-14 15:59:11 -07:00
Evan Baker eca8a2d540
fix typo in flag documentation: sytemd -> systemd
Signed-off-by: Evan Baker <rbtr@users.noreply.github.com>
2021-05-14 17:00:03 -05:00
Medya Ghazizadeh 33e26502dd
Merge pull request #11366 from spowelljr/fixImageLoad
`image load`: overwrite same image unless `--overwrite=false`
2021-05-13 21:18:29 -07:00
Daehyeok Mun 7c2e963392 Implement target node option for cp command 2021-05-13 10:47:09 -07:00
Steven Powell bcc6b46185 ran make generate-docs 2021-05-12 14:28:51 -07:00
Steven Powell 826f1852ab replace over-write with overwrite 2021-05-12 14:26:34 -07:00
Steven Powell 8e696da904 ran make generate-docs again 2021-05-12 14:26:34 -07:00
Steven Powell 83366b7929 added over-write flag for image load 2021-05-12 14:26:32 -07:00
minikube-bot e8b16a5247 Updating kicbase image to v0.0.22-1620785771-11384 2021-05-12 02:25:58 +00:00
Anders F Björklund fb728a8893 Switch place of minikube image ls and list
Just to make it more similar to the docker image commands.

Both ls/list and rm/remove are equivalent commands, though.
2021-05-09 09:37:02 +02:00
Medya Ghazizadeh a2d62511d2
Merge pull request #11191 from zhijianli88/shell-completion
completion: add specific shell completion
2021-05-07 16:16:54 -07:00
Medya Ghazizadeh 4bb44282d7
Merge pull request #11298 from minikube-bot/kicbase-release-v0.0.22
Update kicbase to v0.0.22
2021-05-06 10:56:40 -07:00
Medya Ghazizadeh 501d51eff2
Merge pull request #11299 from minikube-bot/iso-release-v1.20.0
Update ISO to v1.20.0
2021-05-06 10:55:43 -07:00
Sharif Elgamal 94e2ec4e37
Merge pull request #11287 from medyagh/update-k8s-v
update newest supported  Kubernetes version to v1.22.0-alpha.1
2021-05-06 10:55:25 -07:00
Medya Gh 5d37f3d151 site 2021-05-05 16:27:52 -07:00
Medya Gh 5b7acd315a update newest kubernetes version 2021-05-05 16:27:52 -07:00
Andriy Dzikh 9f9dc2c326 Update docs using `make generate-docs`. 2021-05-05 16:18:15 -07:00
Sharif Elgamal 6850e7312a generate-docs 2021-05-05 14:54:36 -07:00
minikube-bot 625a06ce6d Update kicbase to v0.0.22 2021-05-05 21:18:37 +00:00
ilya-zuyev 27045fd421
Merge pull request #11239 from minikube-bot/kicbase-release-v0.0.21
Update kicbase to v0.0.21
2021-04-30 11:36:16 -07:00
minikube-bot c5b65cab51 Update kicbase to v0.0.21 2021-04-30 18:08:55 +00:00
minikube-bot 2e12378c99 Update ISO to v1.20.0-beta.0 2021-04-30 06:22:22 +00:00
Medya Ghazizadeh ac2b98d744
Merge pull request #11169 from spowelljr/addBetaNotifications
Add opt-in notifications for beta releases
2021-04-29 14:03:59 -07:00
Li Zhijian 0e228aa4e2 make generate-docs
Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com>
2021-04-29 18:30:27 +08:00
minikube-bot fff23925e0 Updating kicbase image to v0.0.20-1619543236-11212 2021-04-27 17:16:43 +00:00
Medya Ghazizadeh 8ce6326186
Merge pull request #11054 from afbjorklund/iso-os-update
Upgrade buildroot minor version
2021-04-24 21:10:51 -07:00
Medya Ghazizadeh 30d659c635
Merge pull request #11055 from afbjorklund/kic-os-update
Update kicbase base image
2021-04-24 21:09:32 -07:00
minikube-bot 6ff3832348 Updating ISO to v1.19.0-1619288095-11054 2021-04-24 19:08:52 +00:00
Steven Powell 29745438da add opt-in notifications for beta releases 2021-04-22 14:35:19 -07:00
Anders F Björklund c7153247f9 Regenerate documentation for the unit test 2021-04-21 20:26:28 +02:00
Anders F Björklund c961190ed8 Allow passing environ and options to build 2021-04-21 20:26:28 +02:00
Anders F Björklund 02b4267fd0 Add option for pushing image to registry 2021-04-21 20:26:28 +02:00
Anders F Björklund c94a6d7968 Make sure to pass any file param to build 2021-04-21 20:26:28 +02:00
Anders F Björklund 6cfbf2cc3d Move minikube build cmd to minikube image build
Use the long name also for examples and usage
2021-04-21 20:26:28 +02:00
Anders F Björklund 6f26e4b8ec Generate documentation for the build command 2021-04-21 20:26:28 +02:00
minikube-bot 2f1943d654 Updating ISO to v1.19.0-1618897865-11099 2021-04-20 06:50:07 +00:00
Medya Ghazizadeh d4c1c2a79f
Merge pull request #11127 from afbjorklund/image-pull
new command "image pull: allow to load remote images directly without cache
2021-04-19 14:57:48 -07:00
Anders F Björklund 9c1a4f4fc0 Allow to load remote images directly without cache 2021-04-19 20:24:06 +02:00
minikube-bot 0f678017c5 Updating ISO to v1.19.0-1618553696-11111 2021-04-16 07:13:48 +00:00
minikube-bot 0e1fd72042 Updating kicbase image to v0.0.20-1618262794-11055 2021-04-12 21:36:41 +00:00
ilya-zuyev a9cf5e9337
Merge pull request #11049 from minikube-bot/iso-release-v1.19.0
Update ISO to v1.19.0
2021-04-09 17:11:21 -07:00
minikube-bot 2c9be984fd Update ISO to v1.19.0 2021-04-09 23:27:53 +00:00
minikube-bot f7c204d907 Update kicbase to v0.0.20 2021-04-09 19:23:04 +00:00
Sharif Elgamal ffba51f082 Merge branch 'master' of github.com:kubernetes/minikube into medya-autopause-vm 2021-04-08 14:00:37 -07:00
Sharif Elgamal 699c663df3
Revert "Bump newest supported kubernetes version to v1.21.0-rc.0" 2021-04-08 13:06:00 -07:00
minikube-bot 831c3dfdbd Updating kicbase image to v0.0.19-1617905290-11019 2021-04-08 18:17:37 +00:00
minikube-bot 61aa26dec2 Updating ISO to v1.19.0-1617859429-11019 2021-04-08 06:21:11 +00:00
Medya Ghazizadeh 889587d44d
Merge pull request #11010 from ilya-zuyev/ilyaz/bump_k8s_1.21.0
Bump newest supported kubernetes version to v1.21.0-rc.0
2021-04-07 16:57:35 -07:00
Ilya Zuyev a88664d771 bump NewestKubernetesVersion to v1.21.0-rc.0 2021-04-06 17:01:29 -07:00
Anders F Björklund 35d8d4aa52 Add ListImages function and image list command 2021-04-06 22:57:34 +02:00
minikube-bot 53babcc152 Update kicbase to v0.0.19 2021-04-05 22:22:23 +00:00
minikube-bot 77daf46300 Update ISO to v1.19.0 2021-04-05 20:00:42 +00:00
Sharif Elgamal 6786da83f3
Merge pull request #10217 from pkalever/nbd-iso
iso: enable Network Block Device support
2021-04-02 11:43:10 -07:00
minikube-bot 6bac9bf4f2 Updating ISO to v1.18.0-1617380636-10217 2021-04-02 17:20:26 +00:00
minikube-bot 3490ffaefe Updating ISO to v1.18.0-1617297297-10217 2021-04-01 18:03:38 +00:00
Sharif Elgamal 0a49774077
Merge pull request #10930 from Karmavil/patch-1
Fix: path [commands/completion.md]
2021-03-30 12:52:32 -07:00
Medya Ghazizadeh 0de446dc9e
Merge pull request #10792 from prezha/kvm-network
kvm2 driver: add dedicated network & static ip
2021-03-29 17:17:50 -07:00
Predrag Rogic 06d4313f3f
kvm2 driver: add static ip 2021-03-27 23:33:24 +00:00
Predrag Rogic fcc6283859
kvm2 driver: add dedicated network 2021-03-26 23:34:04 +00:00
Tharun e37f8bc1a2 add unload as an alias and fixed parent command usage
Signed-off-by: Tharun <rajendrantharun@live.com>
2021-03-27 02:30:15 +05:30
Federico Gallo 62fc31981b
Fix: typo [commands/completion.md]
[site/content/en/docs/commands/completion.md]
Replaced dash (-) for underscore (_) Line 26 => source /etc/bash_completion
2021-03-26 01:26:49 -03:00
Tharun 82d7fcc65f address log and docs feedback
Signed-off-by: Tharun <rajendrantharun@live.com>
2021-03-25 19:32:13 +05:30
Tharun b9b657ca85 add minikube rm image command
Signed-off-by: Tharun <rajendrantharun@live.com>
2021-03-25 17:24:47 +05:30
minikube-bot dc94b53463 Updating ISO to v1.18.0-1616648395-10217 2021-03-25 05:44:42 +00:00
Medya Ghazizadeh 77c6de357d
Merge pull request #10807 from afbjorklund/load-new
Image load: Allow loading local images from tar or cache
2021-03-24 17:50:03 -07:00
Tharun 628a4a8319 not mention timeToStop in status instead of showing NonExistent
Signed-off-by: Tharun <rajendrantharun@live.com>
2021-03-24 11:37:57 +05:30
Medya Ghazizadeh f567893cdb
Merge pull request #10872 from tharun208/feat/docker_env_status
add docker-env and podman-env to minikube status
2021-03-23 20:44:11 -07:00
Sharif Elgamal 462a3c5970 fix generate-docs unit tests 2021-03-23 16:17:18 -07:00
Medya Ghazizadeh 3e869e0b7c
Merge pull request #10198 from anencore94/minikube-scp
Add minikube cp command as new feature
2021-03-23 12:43:02 -07:00
Medya Ghazizadeh d1341ceded
Merge pull request #10647 from afbjorklund/docker-20.10.4
ISO Upgrade Docker, from 20.10.3 to 20.10.4
2021-03-23 10:08:00 -07:00
Tharun 2779ec021b add docker-env and podman-env to minikube status
Signed-off-by: Tharun <rajendrantharun@live.com>
2021-03-23 22:24:04 +05:30
Anders F Björklund 3bcb5a1e09 Regenerate documentation with the new load help 2021-03-23 07:54:16 +01:00
Anders F Björklund 6fd8a052e2 Merge branch 'master' into load-new 2021-03-23 07:52:36 +01:00
Anders F Björklund a7cf6feb9e Regenerate documentation to fix failing unit test 2021-03-23 07:44:06 +01:00
Anders F Björklund e064eb13fd Merge branch 'master' into load-new 2021-03-23 07:02:50 +01:00
minikube-bot 3d9d0e105c Updating ISO to v1.18.0-1616464260-10647 2021-03-23 02:43:42 +00:00
Anders F Björklund 15e422d79b Generate docs for commands to make test happy 2021-03-18 07:20:57 +01:00
Anders F Björklund 78bc248a89 Allow running kubectl over the ssh connection
The default is to run kubernetes client locally
2021-03-16 07:45:17 +01:00
Anders F Björklund 0d99d18803 Allow loading local images as well as from cache
Previously only allowed loading from daemon or remote
via the cache, and not directly from local tarball.
2021-03-13 14:43:15 +01:00
Medya Ghazizadeh 025fae0de3
Merge pull request #10704 from nixpanic/iso/add-losetup
install losetup from util-linux in the ISO to enable support for VolumeMode=Block PVCs
2021-03-10 15:38:31 -08:00
minikube-bot d299be963d Updating ISO to v1.18.0-1615350772-10704 2021-03-10 05:22:51 +00:00
Sharif Elgamal 15c44bf7ac reorganize addons to make force flag more generic 2021-03-09 13:32:09 -08:00
Sharif Elgamal 16a2ac9c47 generate docs 2021-03-08 13:10:43 -08:00
anencore94 109b1e0fe2 make cp commmand allow target path as absolutepath
- only absolute path is allowed

Signed-off-by: anencore94 <anencore94@kaist.ac.kr>
2021-03-08 10:51:15 +09:00
anencore94 76f3c72e82 [Feature] Add minikube cp command
- add new feature represents cp local file into minikube
- add functional test for cp command

Signed-off-by: anencore94 <anencore94@kaist.ac.kr>
2021-03-08 10:51:15 +09:00
Medya Ghazizadeh d2cb052fca
Merge pull request #10653 from Loyen/add-listen-address-flag
Add flag "--listen-address" for docker and podman driver
2021-03-05 12:56:22 -08:00
Patrik Freij 29a7145e9d Add podman support for --listen-address 2021-03-02 20:59:27 +01:00
phantooom badc5d4532 add more check for kvm2 support simulate numa node 2021-03-02 22:27:26 +08:00
phantooom e11f23a4c9 kvm2 driver support simulate numa node 2021-03-02 22:27:26 +08:00
Steven Powell 0c1c0ee9a7 ran generate-docs 2021-03-01 15:40:45 -07:00
Patrik Freij 6604c9254a Generate docs to add --listen-address 2021-03-01 16:51:15 +01:00
minikube-bot 2c292cca75 Update kicbase to v0.0.18 2021-02-25 23:14:51 +00:00
Medya Gh f272822d15 bump kic base 2021-02-24 13:45:53 -08:00
Medya Gh 549bb10a52 update kicbase with pause 2021-02-24 12:30:06 -08:00
Ilya Zuyev 702f4bbb3e run make generate-docs 2021-02-23 16:21:04 -08:00
Medya Ghazizadeh 2ac7bcd8d1
Merge pull request #10548 from jiefenghe/master
disable minikube-scheduled-stop.service until a user schedules a stop
2021-02-22 01:04:50 -08:00
Jiefeng He d6e9174435 update new tag, SHA, and doc due to new kicbase image 2021-02-21 17:27:24 -08:00
Medya Gh 7ec54bf958 update docs 2021-02-20 16:17:56 -08:00
Medya Gh d120656161 update image 2021-02-20 10:55:56 -08:00
Medya Gh 712ab628a6 update kicbase 2021-02-20 10:11:35 -08:00
Medya Gh a66d2a3124 bupm oldest kubernetes version to v1.14.0 2021-02-20 10:07:26 -08:00
Sharif Elgamal 9abb3bed51 update kicbase image 2021-02-19 18:08:41 -08:00
Sharif Elgamal 17af0f999b update kicbase image for testing 2021-02-18 19:20:17 -08:00
Sharif Elgamal 74e2127a87 update kicbase image for the last time 2021-02-18 18:28:02 -08:00
Sharif Elgamal 31ea98ca50 update kicbase to newest build 2021-02-18 15:04:34 -08:00
Sharif Elgamal fd897f4f23 fix up repo stuff 2021-02-17 10:32:48 -08:00
Sharif Elgamal 1233508e3c generate-docs 2021-02-17 09:59:56 -08:00
Medya Ghazizadeh a3609d3778
Merge pull request #10380 from daehyeok/profile_list_light
Add -l/--light option for profile list command.
2021-02-10 17:04:39 -08:00
Daehyeok Mun f457bde02d Add -l/--light option for profile list command.
If option is true, Doens't try to get profiles from container and read
current status.
2021-02-09 16:06:09 -08:00