diff --git a/site/content/en/docs/Handbook/config.md b/site/content/en/docs/Handbook/config.md index ce91a38d28..34b83cb5b7 100644 --- a/site/content/en/docs/Handbook/config.md +++ b/site/content/en/docs/Handbook/config.md @@ -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 diff --git a/site/layouts/partials/sidebar-tree.html b/site/layouts/partials/sidebar-tree.html index 555bf037b5..029abae4c5 100644 --- a/site/layouts/partials/sidebar-tree.html +++ b/site/layouts/partials/sidebar-tree.html @@ -88,11 +88,15 @@ {{ $activePage := eq . $p }} {{ end }} - + {{ if eq $s.Title "Handbook" }} - {{ if lt (len $p.CurrentSection.Pages) 8 }} + {{ if lt (len $p.CurrentSection.Pages) 7 }} {{ $showPage = true }} {{ end }} + + {{ if eq $csid "welcome" }} + {{ $showPage = true }} + {{ end }} {{ end }} {{ if $showPage }} diff --git a/site/themes/docsy b/site/themes/docsy index 3123298f5b..e13afeb5c0 160000 --- a/site/themes/docsy +++ b/site/themes/docsy @@ -1 +1 @@ -Subproject commit 3123298f5b0f56b3315b55319e17a8fa6c9d98f9 +Subproject commit e13afeb5c0ffa5a2dff237fffa77bea80319f578