Final merge
commit
6f5a0496cd
|
|
@ -58,6 +58,14 @@ As of September 2019, this means that minikube supports and actively tests again
|
|||
|
||||
For more up to date information, see `OldestKubernetesVersion` and `NewestKubernetesVersion` in [constants.go](https://github.com/kubernetes/minikube/blob/master/pkg/minikube/constants/constants.go)
|
||||
|
||||
### Enabling feature gates
|
||||
|
||||
Kubernetes alpha/experimental features can be enabled or disabled by the `--feature-gates` flag on the `minikube start` command. It takes a string of the form `key=value` where key is the `component` name and value is the `status` of it.
|
||||
|
||||
```shell
|
||||
minikube start --feature-gates=EphemeralContainers=true
|
||||
```
|
||||
|
||||
### Modifying Kubernetes defaults
|
||||
|
||||
The kubeadm bootstrapper can be configured by the `--extra-config` flag on the `minikube start` command. It takes a string of the form `component.key=value` where `component` is one of the strings
|
||||
|
|
|
|||
|
|
@ -88,11 +88,15 @@
|
|||
{{ $activePage := eq . $p }}
|
||||
{{ end }}
|
||||
|
||||
<!-- show handbook unless we are in a very long section -->
|
||||
<!-- show handbook unless we are in a very long section -->
|
||||
{{ if eq $s.Title "Handbook" }}
|
||||
{{ if lt (len $p.CurrentSection.Pages) 8 }}
|
||||
{{ if lt (len $p.CurrentSection.Pages) 7 }}
|
||||
{{ $showPage = true }}
|
||||
{{ end }}
|
||||
<!-- always show handbook if we are on the frontpage -->
|
||||
{{ if eq $csid "welcome" }}
|
||||
{{ $showPage = true }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ if $showPage }}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 3123298f5b0f56b3315b55319e17a8fa6c9d98f9
|
||||
Subproject commit e13afeb5c0ffa5a2dff237fffa77bea80319f578
|
||||
Loading…
Reference in New Issue