Commit Graph

366 Commits (db08552f10366702429ad7d7a37a942affb7ee8b)

Author SHA1 Message Date
Steven Powell 4cd3abfcde add disable-optimizations flag 2022-01-12 13:50:38 -08:00
minikube-bot ce5e693531 Update auto-generated docs and translations 2022-01-12 21:36:57 +00:00
Anders F Björklund c4800a6115 Make the default container runtime dynamic
Since the dockershim removal, there is no longer a constant
default container runtime provided by upstream. Only CRI.
2022-01-04 15:03:57 +01:00
Medya Ghazizadeh b2fcd0a729
Merge pull request #13227 from afbjorklund/cri-dockerd-kic
KIC: Add building of cri-dockerd
2021-12-24 08:20:04 -08:00
minikube-bot ea790372c8 Updating ISO to v1.24.0-1640253061-13195 2021-12-23 11:04:07 +00:00
minikube-bot e7d646b2a0 Update auto-generated docs and translations 2021-12-23 00:47:15 +00:00
minikube-bot 2bd63b55aa Updating kicbase image to v0.0.28-1640212998-13227 2021-12-23 00:19:12 +00:00
minikube-bot 18867ca526 bump default/newest kubernetes versions 2021-12-20 08:03:30 +00:00
Sharif Elgamal 5de765023a
Merge pull request #13124 from sharifelgamal/kicbase-arch
fix kicbase dockerfile to allow ppc64le and armv7 archs
2021-12-15 14:08:07 -08:00
minikube-bot a6ef730eb7 Updating kicbase image to v0.0.28-1639515145-13124 2021-12-14 21:54:37 +00:00
minikube-bot 492b0b4e9a Updating ISO to v1.24.0-1639505700-12892 2021-12-14 19:10:21 +00:00
minikube-bot efe0dd71b4 Updating kicbase image to v0.0.28-1639444036-13124 2021-12-14 02:08:03 +00:00
Steven Powell 54c615bd36 remove --mode flag from mount 2021-12-13 15:32:20 -08:00
minikube-bot 63bbbd1a52 Update auto-generated docs and translations 2021-12-10 23:19:10 +00:00
Steven Powell 9d16d24909
Revert "Refactored to remove config.ExtraOptions" 2021-12-08 13:07:33 -08:00
Steven Powell 3cd016b06f added comment and append error to message 2021-12-07 16:56:35 -08:00
Sharif Elgamal 78671bdec2
Merge pull request #13105 from klaases/cond1
Update containerd to v1.5.8
2021-12-07 13:29:21 -08:00
Sharif Elgamal 41546a03e5
Merge pull request #13104 from klaases/kic1
Update BUILD KIT version to latest, 0.9.3.
2021-12-07 11:02:40 -08:00
minikube-bot fc6dcf3bd7 Updating ISO to v1.24.0-1638835912-13105 2021-12-07 01:15:51 +00:00
minikube-bot 3e901caf92 Updating kicbase image to v0.0.28-1638824847-13104 2021-12-06 21:36:10 +00:00
minikube-bot 2578bd8bd5 bump default/newest kubernetes versions 2021-12-06 08:02:53 +00:00
minikube-bot 846e0c4edb Updating ISO to v1.24.0-1638385553-13059 2021-12-01 20:01:11 +00:00
minikube-bot 12b711e797 bump default/newest kubernetes versions 2021-11-22 08:02:49 +00:00
minikube-bot fc0b50b74d Update auto-generated docs and translations 2021-11-04 21:49:01 +00:00
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
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
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
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
minikube-bot d7484e41ee Updating ISO to v1.22.0-1628974786-12268 2021-08-14 22:13:14 +00: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
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
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
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
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
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
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
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
Medya Gh 7f528a4061 bump default k8s version and newest 2021-05-27 12:57:23 -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
minikube-bot e8b16a5247 Updating kicbase image to v0.0.22-1620785771-11384 2021-05-12 02:25:58 +00: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
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
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
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
minikube-bot 2f1943d654 Updating ISO to v1.19.0-1618897865-11099 2021-04-20 06:50:07 +00: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
Ilya Zuyev a88664d771 bump NewestKubernetesVersion to v1.21.0-rc.0 2021-04-06 17:01:29 -07: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
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
minikube-bot dc94b53463 Updating ISO to v1.18.0-1616648395-10217 2021-03-25 05:44:42 +00: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
Anders F Björklund a7cf6feb9e Regenerate documentation to fix failing unit test 2021-03-23 07:44:06 +01:00
minikube-bot 3d9d0e105c Updating ISO to v1.18.0-1616464260-10647 2021-03-23 02:43:42 +00:00
minikube-bot d299be963d Updating ISO to v1.18.0-1615350772-10704 2021-03-10 05:22:51 +00: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 597091d84b
Merge pull request #10106 from spowelljr/userFlag
Add new flag --user and to log executed commands
2021-01-26 15:44:58 -08:00
Medya Ghazizadeh 3668e15224
Merge pull request #10194 from ilya-zuyev/ilyaz/update_k8s_version_2
update k8s version to  v1.20.3-rc.0
2021-01-22 10:02:44 -08:00
Priya Wadhwa 4636c04e5c fix generate docs 2021-01-21 14:06:03 -08:00
Steven Powell 82f7df5b56 Add user flag and log executed commands 2021-01-20 17:30:48 -07:00
Ilya Zuyev daa7b2780b update k8s version to v1.20.3-rc.0 2021-01-20 16:22:05 -08:00
Anders F Björklund 541193c945 Address review comments, rename to ssh-ip-address 2021-01-16 14:44:56 +01:00