Commit Graph

1515 Commits (1a01b9450cc12dbe664d89f676a441c4762635df)

Author SHA1 Message Date
Thomas Stromberg 1f7ae5b35b Merge to master 2020-03-05 09:57:46 -08:00
Sharif Elgamal 1327f9d3a5
Merge pull request #6836 from sharifelgamal/machinename
Decouple machine name from profile/cluster name
2020-03-04 21:06:28 -08:00
Thomas Stromberg 3e772d0048 Merge master 2020-03-04 20:18:16 -08:00
Medya Ghazizadeh d5bc3fdc65
Merge pull request #6888 from sharifelgamal/driver
Switch --vm-driver paramter to --driver
2020-03-04 19:04:43 -08:00
Thomas Stromberg a1ebcbd031 Merge conflicts 2020-03-04 18:01:41 -08:00
Thomas Stromberg 39670fc06f Add download package & support URL fallback 2020-03-04 17:07:49 -08:00
Sharif Elgamal 0ff12cafac Merge branch 'master' of github.com:kubernetes/minikube into machinename 2020-03-04 16:37:54 -08:00
Sharif Elgamal 2db0b8cea2 fix search/replace errors 2020-03-04 14:10:39 -08:00
Sharif Elgamal ac0c1bad42 missing files 2020-03-04 13:48:21 -08:00
Sharif Elgamal e2ce45c6f0 Switch --vm-driver paramter to --driver 2020-03-04 13:32:43 -08:00
Sharif Elgamal 7fbabd4798 Merge branch 'master' of github.com:kubernetes/minikube into machinename 2020-03-04 09:24:17 -08:00
Naveen Kumar Sangi f183a79a2d
profile_list: Do not throw error for unready clusters 2020-03-04 11:13:51 -06:00
Medya Ghazizadeh aa02c106c3
Merge pull request #6875 from josedonizetti/fix-delete-all-cmd
Fix delete --all if using non default profile
2020-03-03 17:59:07 -08:00
Jose Donizetti a269de762f Fix delete --all if using non default profile 2020-03-03 20:41:24 -03:00
Sharif Elgamal daf8363961
fix logs and delete command 2020-03-03 14:23:35 -08:00
Sharif Elgamal 3bb111a6fc
make sure machine name is properly backwards compatible 2020-03-03 13:49:01 -08:00
Sharif Elgamal 95dd21d115
unit tests pass holy cow 2020-03-03 13:20:21 -08:00
Sharif Elgamal 28e030c728
Merge branch 'master' of github.com:kubernetes/minikube into machinename 2020-03-03 12:16:47 -08:00
Sharif Elgamal 2618c32b27
fixing unit tests 2020-03-03 12:14:22 -08:00
Medya Ghazizadeh 6affbc3209
Merge pull request #6867 from josedonizetti/fix-kic-service-warn-message
kic: Fix service warn message on docker/osx
2020-03-03 10:16:19 -08:00
Jose Donizetti f679db1d09 kic: Fix service warn message on docker/osx 2020-03-03 10:03:52 -03:00
Sharif Elgamal 31a42ce672
address comments 2020-03-02 17:30:08 -08:00
Sharif Elgamal 4cd3ef81a5
more changes 2020-03-02 15:21:37 -08:00
Anders F Björklund fd99260ae7 Fix native-ssh flag for the ssh command 2020-03-02 19:12:04 +01:00
Sharif Elgamal 4b902f7e9f
more changes 2020-02-28 15:58:05 -08:00
Jose Donizetti 954f5a6b74 kic: fix service list for docker on osx 2020-02-28 14:57:53 -03:00
Sharif Elgamal 3b04a8d85e initial machine name refactor 2020-02-28 09:50:55 -08:00
Medya Ghazizadeh 3f34e68404
Merge pull request #6774 from vikkyomkar/issue-6767
Fix: do not change the profile to a none existing profile
2020-02-28 09:21:32 -08:00
Jose Donizetti c412a8ae44 Fix start for existing profile 2020-02-28 12:53:51 -03:00
Jose Donizetti 5e30d2f8c9 Fix linter 2020-02-26 22:29:28 -03:00
Jose Donizetti 5d8f2541f6 kic on mac: add service warn 2020-02-26 22:16:50 -03:00
Jose Donizetti f390d4bf30 kic on mac: add service cmd support 2020-02-26 20:49:58 -03:00
Medya Gh 4709af55df resolve review comments 2020-02-26 12:44:25 -08:00
vikkyomkar 9d87d64441 added suggestion message 2020-02-25 11:24:25 +05:30
Medya Gh 7596b39607 addres PR review 2020-02-24 15:10:34 -08:00
Medya Gh 850169764c improve message 2020-02-24 14:51:45 -08:00
Medya Gh 2e261d3d00 add not implemented messages for docker on mac service 2020-02-24 14:41:34 -08:00
Medya Gh d7ee8bfd37 patch 2020-02-24 11:31:53 -08:00
Medya Ghazizadeh 5fe81c806d
Merge pull request #6460 from josedonizetti/kic-darwin-tunnel
WIP: kic darwin tunnel
2020-02-24 11:28:00 -08:00
vikkyomkar 8cfc825641 fixes profile switch to non-existing one 2020-02-24 17:49:25 +05:30
Medya Ghazizadeh 727beb6893
Merge pull request #6744 from kppullin/docker-env-fish-fix
Generate fish compatible docker-env hint
2020-02-22 18:42:08 -08:00
Anders F Björklund fa9f7f9794 Add comments to avoid warnings from go lint 2020-02-22 16:12:42 +01:00
Kevin Pullin 8d78c95aea Generate fish compatible docker-env hint
`fish`'s eval handling does not properly process multiple lines.

Instead the recommendation is to pipe the output to `source`.

This PR updates the usage hint of the `docker-env` command
when running on `fish`:

```
eval (minikube -p fish docker-env) => (minikube -p fish docker-env) | source
```

Ref: https://github.com/fish-shell/fish-shell/issues/3993
Signed-off-by: Kevin Pullin <kevin.pullin@gmail.com>
2020-02-21 17:11:43 -08:00
Sharif Elgamal 6e9cf2de2f Change MachineConfig to ClusterConfig 2020-02-21 16:09:05 -08:00
sayboras bc2a7aec8b Adjust assert statements 2020-02-22 07:31:49 +11:00
Tam Mach 1d0267f23c Fix unit test 2020-02-22 07:18:16 +11:00
Medya Gh 4d9730137f improve logging 2020-02-20 21:56:23 -08:00
Medya Gh 7c1c0ebb02 more error logging 2020-02-20 21:41:21 -08:00
Medya Gh 67e9c9ab85 log errors in unit test 2020-02-20 21:41:21 -08:00
Medya Gh e6d70210af add error wrpaps for config set 2020-02-20 21:41:21 -08:00