Thomas Stromberg
72e596507a
Merge branch 'master' into consistent_err_formatting
2018-10-19 14:08:35 -07:00
Balint Pato
ae9f4b20c7
minikube tunnel ( #3015 )
...
This commit introduces a new command, `minikube tunnel`, a LoadBalancer emulator functionality, that must be run with root permissions.
This command:
* Establishes networking routes from the host into the VM for all IP ranges used by Kubernetes.
* Enables a cluster controller that allocates IPs to services external `LoadBalancer` IPs.
* Cleans up routes and IPs when stopped (Ctrl+C), when `minikube` stops, and when `minikube tunnel` is ran with the `--cleanup` flag
2018-10-18 11:01:47 -07:00
Thomas Stromberg
fd0d46680e
Respect the -p flag to set the appropriate profile.
2018-10-04 11:35:24 -07:00
Thomas Stromberg
534325e88f
Use %v for errors instead of %s
2018-10-03 21:57:17 -07:00
Thomas Stromberg
c079bb1934
Update integration tests to handle newly persistant dashboard.
2018-10-03 15:06:30 -07:00
Thomas Stromberg
d38705a42b
Fix overzealous replacement of namespace -> ns that broke URL generation
2018-10-03 13:58:25 -07:00
Thomas Stromberg
2956621c20
Add function comments, improve proxy stdout log message
2018-10-03 13:30:09 -07:00
Thomas Stromberg
4c35c505f6
Double HTTP wait time and make error messages more readable.
2018-10-03 13:22:36 -07:00
Thomas Stromberg
ac6dacff4a
Address lint issues resulting from the dashboard proxy refactor.
2018-10-03 13:14:47 -07:00
Thomas Stromberg
8fd45bc751
Block until the proxy URL is healthy.
...
This is necessary now that there is no proper service endpoint to block
on.
2018-10-03 13:00:13 -07:00
Thomas Stromberg
df54c6a5b4
Use "kubectl proxy" instead of a NodePort to expose the dashboard.
...
This provides an additional level of security, by enforcing host checking, applying port randomization, and requiring explicit user intent to expose the service to the host.
2018-10-02 22:25:45 -07:00
Thomas Stromberg
3706b3b8ac
Fix dangling format issues.
2018-09-28 16:48:37 -07:00
Thomas Stromberg
055c8002b1
Replace %s format directives with %v for errors.
...
Previously we were mixed between the two forms. This commit picks %v,
which is consistent with the Kubernetes code base. They both effectively
do the same thing in this case, though %v works with any object, and %s
only with string objects.
2018-09-28 16:05:27 -07:00
Arijit Basu
bed9aabaf8
Stay in same line
2018-09-10 12:15:28 -05:00
Jason Stangroome
9b21d3c7e4
Allow certificates to be optionally embedded in .kube/config
...
Opt-in with `minikube config set embed-certs true`. Similar to the
behaviour of `kubectl config set-credentials --embed-certs`.
Enables Minikube on Windows to produce a .kube/config file that
can be shared directly with kubectl inside the Windows Subsystem
for Linux (WSL) without needing to perform additional translation
of the certificate paths within the configuration file.
2018-09-03 15:34:50 -05:00
Sebastien Collin
e551231ec5
Allow to specify api server port through CLI
2018-09-01 15:07:27 +02:00
Asbjørn Apeland
5a78ac92f6
Change Linux install method
...
Previously, files installed to /usr/local/bin/ would be owned by the
user executing the command, not root. This change makes these installed
files owned by root instead. Improving security is the goal.
2018-07-31 10:55:22 -07:00
dlorenc
deb2ded956
Add back version flag.
2018-07-24 12:36:42 -07:00
dlorenc
a3b7a56ae0
Remove the call to validatek8sversion.
2018-07-24 12:36:42 -07:00
Aaron Prindle
8264dc0a12
fix issue where version was not being set
2018-07-24 12:36:42 -07:00
Aaron Prindle
a4606583e4
remove all localkube references from code, change /var/lib/localkube to /var/lib/minikube
2018-07-24 12:36:42 -07:00
dlorenc
15b035748c
Manual changes to remove localkube.
2018-07-24 12:36:42 -07:00
Dusty Rip
2dea4e1051
Allow zsh completion to be autoloaded by compinit
2018-07-18 09:44:35 -07:00
kairen
ad576faae9
Reuse the FeatureGates field to parse kubeadm and component feature gates
2018-07-16 08:09:09 -07:00
kairen
ccaec1db0e
Add feature gates support for Kubeadm
2018-07-16 08:09:09 -07:00
Rohit Agarwal
96079478a7
Add nvidia-driver-installer and nvidia-gpu-device-plugin addons.
2018-07-08 22:25:48 -07:00
Rohit Agarwal
268c932240
Add GPU support to minikube.
2018-07-08 22:25:48 -07:00
Peter Trotman
3dfea62fd4
Changed the nodes within the VM to use a NodeName variable that is
...
seperate from the VM Machine Name to ensure proper functionality when
using different profile names.
2018-06-18 08:39:11 -07:00
dlorenc
305e803316
Bump Docker API Verson.
2018-06-05 13:45:01 -07:00
seborama
ee73cbde6b
Added hyperkit options for enterprise VPN support
...
The purpose of these changes is to enhance Hyperkit support from the
minikube command line for better integration with enterprise networks
behind a VPN.
uuid: Provide VM UUID to restore MAC address (only supported with
Hyperkit driver).
vpnkitSock: Location of the VPNKit socket used for networking. If empty,
disables Hyperkit VPNKitSock, if 'auto' uses Docker for Mac
VPNKit connection, otherwise uses the specified VSock."
vsockPorts: List of guest VSock ports that should be exposed as sockets
on the host (Only supported on with hyperkit now).
Note:
tests pass but file:
`vendor/github.com/google/certificate-transparency/go/x509/root_darwin.go`
has to be edited to correct an issue - not committed since this is in
the vendor directory.
2018-06-04 09:46:20 -07:00
Mark Gibbons
5ed8a7ef91
Made caching async with block for completion before copy of images into cluster. Default imageing caching to false
2018-06-04 08:15:12 -07:00
mlgibbons
0519b237a2
Addressed race condition caused by async image caching with no wait which resulted in unreliable image loading and prevented offline execution of "minikube start".
2018-06-04 08:15:12 -07:00
Li Yi
9198b04386
Fix error messages for enabling/disabling addon
...
Signed-off-by: Li Yi <denverdino@gmail.com>
2018-04-29 18:06:48 -07:00
AdamDang
12f1833ea9
Typo fix: Seperated list->Separated list
...
Seperated list->Separated list
2018-04-29 16:27:11 +08:00
dlorenc
0bf5166e14
Deprecate localkube.
2018-04-09 13:24:07 -07:00
Yongkun Anfernee Gui
0fa64b3bd8
Reorganize the minikube drivers
...
- Add registry to register all supported drivers in different platforms.
- Add DriverDef to define driver's metadata.
- All driver support logic moved to pkg/minikube/drivers, removed all
driver name switches scattered in different packages.
2018-03-11 13:41:30 -07:00
David Muckle
adb30393d1
Add metrics-server as an addon
2018-02-21 15:33:27 -05:00
Yongkun Anfernee Gui
c07258b45a
Fix more permissions
2018-02-09 14:32:53 -08:00
Steve Sloka
4d060d3bdb
Bump registry-creds version
2018-02-07 20:09:20 -08:00
Chen Li
82ea016de7
Redirect command Stdout & Stderr for command_runner
...
CombinedOutput function return after command complete.
When we run a long run command, such as continuously get
new log entries, it failed to get run results.
Fixes: https://github.com/kubernetes/minikube/issues/2447
2018-02-05 09:18:49 -08:00
Remi FUSSIEN
dde00ebfa3
Fix the description in the completion command
2018-02-02 18:57:29 +01:00
Matt Rickard
c76b210393
Merge pull request #2486 from langyxxl/localkube-add-root-check
...
localkube add ROOT permission check
2018-02-01 16:42:26 -08:00
adolphlwq
9b3805d32f
use readable env name
2018-01-31 21:04:49 +08:00
sheng zhang
8b5ffff2d9
localkube add ROOT permission check.
2018-01-30 14:48:18 +08:00
Colin Hoglund
479ca10c75
allow storage-provisioner to be disabled
2018-01-29 14:46:27 -05:00
Zvi Cahana
6e8bb2e0fa
List addons in a consistent sort order
2018-01-24 08:11:44 -08:00
Matt Rickard
ec1b443722
Merge pull request #2423 from kairen/add-freshpod-addon
...
Add freshpod as a new addon
2018-01-23 13:15:01 -08:00
Chen Li
d11b74c493
Flush log message to file before exit
...
Fixes: https://github.com/kubernetes/minikube/issues/2435
2018-01-22 08:19:26 -08:00
Chen Li
aa32282e3f
Use IPSliceVar for apiServerIPs
2018-01-17 08:22:25 -08:00
Chen Li
a3f3286f50
Allow add new server names and IPs to apiserver x509 certificate
2018-01-17 08:22:25 -08:00
kairen
250d602085
Add freshpod as a new addon
2018-01-12 22:57:32 +08:00
basp
cebd704bd7
Issue #2416 : Added UUID to hyperkit driver section in minikube configuration to be able to regenerate the same mac address for the machine after restarts to give DHCP a change of assigning the previously used IP address.
2018-01-11 09:41:35 -08:00
Suraj Deshmukh
5d7d751db8
Change the cri-o socket location to upstream default
...
Right now the cri-o socket is placed in `/var/run/crio.sock`, this
commit changes it to `/var/run/crio/crio.sock` which is similar to
upstream.
Signed-off-by: Suraj Deshmukh <surajd.service@gmail.com>
2018-01-04 10:35:08 -08:00
Anders F Björklund
87f48f1731
Add config to avoid warning about the none driver
...
Even when starting up minikube in a dedicated virtual machine,
there will be a warning against running it on your workstation.
2018-01-03 09:47:24 -08:00
dlorenc
59274b22da
Code review feedback.
2018-01-02 16:18:54 -08:00
Mohit Gupta
7d9413ccd1
remove the hyperkit prefix so we can move this to other drivers as well with time and fix vendoring issue
2018-01-02 16:18:54 -08:00
Mohit Gupta
e1903b7423
support NFS sharing with the hyperkit driver
2018-01-02 16:18:54 -08:00
Matt Rickard
4077763003
Make none driver work with kubeadm
2018-01-02 12:01:37 -08:00
kairen
777b44695f
Improve cache list command
2017-12-08 13:37:55 -06:00
kairen
37bc507e13
Remove duplicate the cache command
2017-12-08 13:37:55 -06:00
kairen
c9f3abb0ed
Fix gofmt check errors
2017-12-08 13:37:55 -06:00
kairen
1966dab625
Add cache list support
2017-12-08 13:37:55 -06:00
dlorenc
9491ce6dbe
Add deprecation notices for kvm and xhyve.
2017-11-29 13:55:29 -08:00
Matt Rickard
43e4b0c655
Merge pull request #2203 from priyawadhwa/cache-images
...
Add cache command to cache non-minikube images
2017-11-29 13:51:53 -08:00
Priya Wadhwa
6344d0bef9
set config map
2017-11-28 15:59:08 -08:00
Priya Wadhwa
6652e7a903
Delete paths to cached images
2017-11-20 16:31:34 -08:00
Patrik Erdes
9b3322a759
Make it known that get-k8s-versions is only relevant for localkube
...
Added a reference to localkube in the help text and in the output from
the command.
2017-11-17 08:55:14 +01:00
Priya Wadhwa
9f8ca7481c
Merge branch 'cache-images' of github.com:priyawadhwa/minikube into cache-images
2017-11-16 17:05:25 -08:00
Priya Wadhwa
3477e4bd8f
Add cache flag to minikube
2017-11-16 14:07:55 -08:00
Matt Rickard
e0b9aab31d
Merge pull request #2197 from ulyssessouza/master
...
#2047 Fix by using 'RunE' instead of 'Run' to propagate the error
2017-11-16 10:15:52 -08:00
Matt Rickard
bbc40bd8f6
Merge pull request #2194 from kenden/zsh_completion
...
Add zsh completion and docs
2017-11-16 08:51:58 -08:00
Patrik Erdes
ce018263f4
Add MB to the help text for the --memory flag
...
Fixes #2151
2017-11-16 10:36:54 +01:00
ulyssessouza
e1dff19117
#2047 Fix by using 'RunE' instead of 'Run' to propagate the error
2017-11-15 03:37:20 +01:00
Quentin Nerden
97edb745c9
Add zsh completion and docs
2017-11-14 22:30:42 +01:00
dlorenc
6f7fd002ab
More storage provisioner fixes.
...
I'm not sure of a better way to ensure /tmp exists in a from scratch container,
but glog appears to just explode without it.
2017-11-07 11:07:01 -08:00
Matt Rickard
e73844c303
Merge pull request #2147 from kairen/add-efk
...
[addons] Add addon support for EFK logging
2017-11-02 10:33:05 -07:00
Matt Rickard
f368ac4999
Merge pull request #2137 from priyawadhwa/storage-provisioner-as-pod
...
Run storage provisioner as pod
2017-11-01 14:00:57 -07:00
Priya Wadhwa
c342ed4d57
Added storage prov deps to Makefile and rewrote main file
2017-11-01 10:54:17 -07:00
kairen
c549bc61bf
Add addon support for EFK logging
2017-11-02 01:00:38 +08:00
Matt Rickard
7ed6005911
Merge pull request #2139 from mahdix/update_check
...
Add update-check sub-command to list current and latest version number
2017-10-31 13:16:01 -07:00
Mahdi Mohammadi
6a8d277a01
Better error handling
2017-10-31 19:41:07 +00:00
Matt Rickard
30667cb406
Calculate ServiceClusterIP and DNS IP from CIDR
2017-10-31 10:06:51 -07:00
Mahdi Mohammadi
65e27a4ebd
Add update-check sub-command to list current and latest version number
2017-10-31 13:42:11 +00:00
Priya Wadhwa
7098431c6a
Small changes
2017-10-30 13:52:45 -07:00
Priya Wadhwa
71b38d1e4e
Tests passing with storage-provisioner in addons
2017-10-30 13:45:31 -07:00
Priya Wadhwa
a8fedc86e1
Create main file for storage provisioner
2017-10-30 13:07:48 -07:00
Ulysses Souza
9e8e1f256a
#1944 Add the 3 services status in 'minikube status' exit status so it can be checked with a simple bitmask
2017-10-26 10:57:27 +02:00
Matt Rickard
8894ed78b9
Add verbose logging
2017-10-17 15:16:02 -07:00
Matt Rickard
6a53c0c06c
Merge pull request #2060 from r2d4/k8s18
...
K8s 1.8
2017-10-16 13:11:39 -07:00
Matt Rickard
8e02089766
Merge pull request #2067 from jiahao/jiahao/addons_list-grammar
...
addons_list.go: fix grammar in help string
2017-10-16 13:02:38 -07:00
Jiahao Chen
8c78239a98
addons_list.go: fix grammar in help string
...
there current status -> their current statuses
2017-10-16 15:15:40 -04:00
Matt Rickard
901c844a00
localkube changes
2017-10-13 10:21:16 -07:00
Matt Rickard
b4de04fac8
Merge pull request #1995 from rajansandeep/coredns
...
Adding CoreDNS as an addon
2017-10-09 14:59:34 -07:00
Aaron Prindle
ec17df3e59
Added sshd, kubeconfig and insecure-serving flags to localkube for dind image
2017-09-28 16:05:51 -07:00
Matt Rickard
9d0c80dc54
Merge pull request #2010 from adolphlwq/remove-repeated-pkg
...
remove repeated pkg and cmdUtil -> cmdutil
2017-09-27 11:13:52 -07:00
Vincent Batts
2788714cc5
minikube-iso: add cri-o runtime
...
https://github.com/kubernetes-incubator/cri-o
Updated the runc version to its latest master commit.
Got crio into the automounter to get off the tmpfs
This feature bubbles up to the minikube command by reusing the
`--container-runtime=` flag, by enabling the value of "`crio`"
(`minikube start --container-runtime=crio`), while the flags/config
passed to localkube are more like k8s (`--container-runtime=remote
--remote-runtime-endpoint=/var/run/crio.sock`)
This is mostly ready for review. It is still lacking having
--insecure-registry plumbed through, but for now the policy.json is
open.
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-09-27 09:12:15 -04:00
adolphlwq
6d64d90dd7
remove repeated pkg and cmdUtil -> cmdutl
...
Signed-off-by: adolphlwq <kenan3015@gmail.com>
2017-09-27 14:11:58 +08:00
Sandeep Rajan
eba63d86cd
adding coredns as an addon
2017-09-21 10:28:45 -04:00
Matt Rickard
ac7d49c124
Don't check kubernetes-version for kubeadm
2017-09-15 10:06:43 -07:00
Matt Rickard
72f7628d35
Add caching for kubeadm
2017-09-14 13:51:41 -07:00
Matt Rickard
49d471f4ba
Add experimental kubeadm bootstrapper
2017-09-14 13:51:37 -07:00
Matt Rickard
ebbc34d2ba
Move drivers to pkg/drivers, share utils
...
Share most of the disk image setup between hyperkit and kvm drivers.
Move and remove a lot of shared configuration between all the in-tree
drivers: kvm, hyperkit, none.
2017-09-12 14:29:22 -07:00
Matt Rickard
cc64fb0544
Merge pull request #1940 from r2d4/vet
...
golint, go vet, etc. changes
2017-09-11 15:30:52 -07:00
Matt Rickard
53341aa30d
golint, go vet, etc. changes
2017-09-11 14:17:58 -07:00
Charlie Drage
e959a848ce
Update start.go with --vm-driver=none information
...
Updates the output in order to clarify commands as well as remove the
undeeded indentation.
2017-09-11 14:33:04 -04:00
Matt Rickard
c5d6bc9dcf
Merge pull request #1935 from krancour/distinct-client-cert
...
generate distinct cert for use by client
2017-09-08 15:26:25 -07:00
Kent Rancourt
c571912b2d
generate distinct cert for use by client
2017-09-08 17:54:58 -04:00
Matt Rickard
f5e95e9223
Merge pull request #1911 from corlettb/master
...
Adding optional aws_session_token to configuration options for registry-creds
2017-09-08 11:06:29 -07:00
Aaron Prindle
0f975dd00c
Merge pull request #1919 from aaron-prindle/add-files-dir
...
add files dir creation
2017-09-06 16:27:14 -07:00
Matt Rickard
0e6e930a7d
Merge pull request #1881 from r2d4/cache-images-4-minikube
...
Cache images in minikube
2017-09-06 15:43:04 -07:00
Aaron Prindle
cdddafa735
add files dir creation
2017-09-06 15:36:04 -07:00
Matt Rickard
3fb711c8ea
Add feature flag for cache-images
2017-09-06 13:36:25 -07:00
Ben Corlett
a2d8b1b434
- Passthrough aws region to registry-creds plugin
...
- Add optional aws_session_token to configuration options for registry-creds for aws sts credentials
2017-09-06 11:01:46 +01:00
Aaron Schlesinger
95c4556b6f
Adding proper boilerplate
2017-08-31 16:12:41 -07:00
Aaron Schlesinger
e99a378a85
Removing the "no buildable source files" error on non-linux machines
2017-08-31 15:24:04 -07:00
Matt Rickard
55b41415ed
Cache images for localkube
...
This PR introduces caching of localkube images. It makes a best effort
to cache the essential images localkube needs as minikube starts up.
Currently, the list of cached images is hardcoded, but future work might
entail
1. Cached images as a property of the cluster bootstrapper - to allow
localkube and kubeadm to cache their respective images.
2. Addons contain image information. Then, we can selectively cache and
preload only the addon images that are enabled.
2017-08-30 22:36:16 -07:00
Matt Rickard
b0db008b87
Merge pull request #1886 from r2d4/localkube-bootstrapper
...
Add localkube as a bootstrapper
2017-08-30 10:51:24 -07:00
Matt Rickard
81f12caa87
Merge pull request #1828 from r2d4/in-tree-kvm
...
Bring KVM driver in-tree
2017-08-30 10:46:29 -07:00
Matt Rickard
48fd6ecb65
Add localkube as a bootstrapper
...
Introduce the --bootstraper or -b flag that toggles the cluster
bootstrapper. The default bootstrapper (and only bootstrapper at this
time) is localkube.
The bootstrapper interface contains all the functions needed to
bootstrap a kubernetes cluster. It ingests a KubernetesConfig, which
contains all the configuration for the cluster, as well as a
CommandRunner, which is the interface upon which it will run commands
and transfer files to possibly remotely set up the cluster.
This moves the localkube functions out of cluster.go into their own
package at k8s.io/minikube/pkg/minikube/bootstrapper/localkube.
2017-08-28 13:23:41 -07:00
Matt Rickard
48b165808c
Bring KVM driver in-tree
...
Add boilerplate
Review feedback
2017-08-28 11:52:35 -07:00
Matt Rickard
1052dda37a
Move CalculateDiskSizeInMB to utils to use in kvm
2017-08-28 11:27:34 -07:00
hanks
5556ce9436
fix(config): make ARN of AWS role input optional
2017-08-25 15:38:08 +09:00
Matt Rickard
3a0d03f93b
Merge pull request #1844 from r2d4/command-runner
...
Add CommandRunner interface
2017-08-24 15:07:51 -07:00
dlorenc
e3d239929b
Jenkins/Makefile targets.
2017-08-24 11:54:59 -07:00
dlorenc
28f9d5dc1a
Initial hyperkit driver implementation.
2017-08-24 11:54:59 -07:00
Matt Rickard
fd921b3997
Review feedback
2017-08-23 14:33:34 -07:00
Matt Rickard
7f558f1a11
Move tests over to use FakeCommandRunner
2017-08-23 14:33:34 -07:00
Matt Rickard
5a9ecbe672
Add CommandRunner interface
...
Two implementations, SSHRunner and ExecRunner allow commands to be run
either through SSH or os.Exec respectively. This allows the cluster
bootstrappers to be unaware of how they are actually executing the
commands they need. Copy and Remove functions provide a nice
convenience function for running commands that copy and remove files
respectively.
2017-08-23 14:33:34 -07:00
Matt Rickard
793739d46a
Remove tests that called exit code
2017-08-22 11:05:59 -07:00
Matt Rickard
6008e1f14f
Merge pull request #1853 from r2d4/return-error-code
...
Exit with non-zero code on error
2017-08-21 13:14:33 -07:00
Matt Rickard
56132b6183
Delete profile config on machine delete
...
Also, don't print out anything when a profile doesn't exist.
2017-08-20 22:47:14 -07:00
Matt Rickard
5692c2e59c
Exit with non-zero code on error
...
We don't log it, since RootCmd.Execute() will already print it out.
2017-08-20 22:16:17 -07:00
Matt Rickard
f19fab24b4
Rename localkube status to cluster status
2017-08-18 11:55:28 -07:00
Sunny
e07eb01366
fix(cmd/start): prevent k8s version downgrades
...
- Create Config struct to store MachineConfig and KubernetesConfig as cluster
configuration.
- Write cluster configuration under $MINIKUBE_HOME/profiles/ directory
when a cluster is launched.
- Load the cluster configuration at `start` and compare the loaded k8s
version with the requested version. Prevent any version downgrade requests.
2017-08-11 18:29:34 +05:30
Matt Rickard
245c4a04de
Merge pull request #1785 from r2d4/lint
...
go lint/vet fixes
2017-08-09 10:44:03 -07:00
Matt Rickard
a02541d18b
Add 'none' shell for docker-env output
...
This is for consumers who want the key/value output, but don't need the
shell directives.
2017-08-04 15:46:27 -07:00
Matt Rickard
5531a63b8d
go lint/vet fixes
2017-08-04 13:42:10 -07:00
Matt Rickard
45eabf66eb
Merge pull request #1720 from r2d4/etcd3
...
Use etcd embed package, switch apiserver to use etcdv3
2017-07-26 13:42:21 -07:00
Matt Rickard
90dc5c87c9
Don't default to kubenet network plugin
...
Hostports seem to require extra CNI configuration and the CNI hostport
plugin installed to work properly with kubenet.
2017-07-25 10:07:10 -07:00
Matt Rickard
5e5a0fb971
Merge pull request #1718 from darkowlzz/1683-delete-machine-profile
...
cmd/minikube: delete accept no arguments
2017-07-24 15:09:34 -07:00
dlorenc
24e08b7337
Fix the way 'minikube status' finds the kubecfg file.
2017-07-24 11:40:15 -07:00
Matt Rickard
8eaf471940
Merge pull request #1727 from r2d4/typo2
...
\t isn't escaped in ``
2017-07-24 11:21:25 -07:00
Aaron Prindle
29a7d7119a
Merge pull request #1436 from Teddy-Schmitz/registry-creds-gcrurl
...
Add gcrurl env var to registry-creds addon deployment and configuration
2017-07-24 10:16:13 -07:00
Sunny
17ba029cba
cmd/minikube: delete accept no arguments
...
This changeset makes the delete command to error out if any argument is passed
to it.
2017-07-22 18:13:19 +05:30
Matt Rickard
ca4de62179
\t isn't escaped in ``
2017-07-21 14:27:49 -07:00
Aaron Prindle
c4ab0947c5
Merge pull request #1711 from upmc-enterprises/registryCredsAWSRole
...
Add additional config options for registry-creds addon / Bump version
2017-07-20 15:20:30 -07:00
Matt Rickard
afcee9a5fc
Merge pull request #1708 from svanellewee/issue-1608-password-hiding-again
...
added AskForPasswordValue and 2 tests
2017-07-20 12:02:07 -07:00
Matt Rickard
a682bbbfe0
Use embeded etcd package, switch to etcdv3
2017-07-20 11:39:04 -07:00
Aaron Prindle
c98ac207ab
Merge pull request #1717 from q3aiml/restore-mount-cmd
...
Restore mount command and unswap port and mountVersion
2017-07-20 10:21:09 -07:00
Andy Clayton
d332a2b818
Restore mount command
...
This seems to have been a mistake in 6f42d58
.
2017-07-19 19:26:20 -05:00