You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thus kubeadm creates /etc/kubernetes/manifests/kube-apiserver.yaml with both sets of parameters. So kube-apiserver keeps failing to start with admission-control and enable-admission-plugins/disable-admission-plugins flags are mutually exclusive, and deployment eventually fails.
What you expected to happen:
minikube start succeeds.
How to reproduce it (as minimally and precisely as possible):
minikube start --kubernetes-version v1.11.0
Output of minikube logs (if applicable):
Anything else do we need to know:
The text was updated successfully, but these errors were encountered:
Is this a BUG REPORT or FEATURE REQUEST? (choose one): BUG REPORT
Please provide the following details:
Environment: Windows 7
Minikube version (use
minikube version
): 0.28.0cat ~/.minikube/machines/minikube/config.json | grep DriverName
): virtualboxcat ~/.minikube/machines/minikube/config.json | grep -i ISO
orminikube ssh cat /etc/VERSION
): v0.28.0What happened:
/var/lib/kubeadm.yaml is created with
because of https://github.com/kubernetes/minikube/blob/3e267fd5/pkg/minikube/bootstrapper/kubeadm/versions.go#L202-L209 , but 1.11.0 also defaults to adding
--enable-admission-plugins
and--disable-admission-plugins
because of kubernetes/kubernetes#64165Thus kubeadm creates /etc/kubernetes/manifests/kube-apiserver.yaml with both sets of parameters. So kube-apiserver keeps failing to start with
admission-control and enable-admission-plugins/disable-admission-plugins flags are mutually exclusive
, and deployment eventually fails.What you expected to happen:
minikube start
succeeds.How to reproduce it (as minimally and precisely as possible):
minikube start --kubernetes-version v1.11.0
Output of
minikube logs
(if applicable):Anything else do we need to know:
The text was updated successfully, but these errors were encountered: