Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use glossary definitions in “Using sysctls in a Kubernetes Cluster” #14414

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions content/en/docs/tasks/administer-cluster/sysctl-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ content_template: templates/task
{{< feature-state for_k8s_version="v1.12" state="beta" >}}

This document describes how to configure and use kernel parameters within a
Kubernetes cluster using the sysctl interface.
Kubernetes cluster using the {{< glossary_tooltip term_id="sysctl" >}}
interface.

{{% /capture %}}

Expand Down Expand Up @@ -80,7 +81,7 @@ kubelet --allowed-unsafe-sysctls \
'kernel.msg*,net.ipv4.route.min_pmtu' ...
```

For minikube, this can be done via the `extra-config` flag:
For {{< glossary_tooltip term_id="minikube" >}}, this can be done via the `extra-config` flag:

```shell
minikube start --extra-config="kubelet.allowed-unsafe-sysctls=kernel.msg*,net.ipv4.route.min_pmtu"...
Expand Down