Skip to content

Commit 2d39523

Browse files
committed
fix page formatting
1 parent fafe933 commit 2d39523

File tree

2 files changed

+28
-13
lines changed

2 files changed

+28
-13
lines changed

content/en/docs/concepts/cluster-administration/flow-control.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ potentially crashing the API server, but these flags are not enough to ensure
1818
that the most important requests get through in a period of high traffic.
1919

2020
The API Priority and Fairness feature (APF) is an alternative that improves upon
21-
aforementioned max-inflight limitations. APF classifies
22-
and isolates requests in a more fine-grained way. It also introduces
21+
aforementioned max-inflight limitations. APF classifies
22+
and isolates requests in a more fine-grained way. It also introduces
2323
a limited amount of queuing, so that no requests are rejected in cases
2424
of very brief bursts. Requests are dispatched from queues using a
25-
fair queuing technique so that, for example, a poorly-behaved {{<
26-
glossary_tooltip text="controller" term_id="controller" >}}) need not
25+
fair queuing technique so that, for example, a poorly-behaved
26+
{{< glossary_tooltip text="controller" term_id="controller" >}} need not
2727
starve others (even at the same priority level).
2828

2929
{{< caution >}}
Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,43 @@
11
---
2-
title: Setup Konnectivity Service
2+
title: Set up Konnectivity service
33
content_template: templates/task
4-
weight: 110
4+
weight: 70
55
---
66

7+
{{% capture overview %}}
8+
79
The Konnectivity service provides TCP level proxy for the Master → Cluster
810
communication.
911

10-
You can set it up with the following steps.
12+
{{% /capture %}}
13+
14+
{{% capture prerequisites %}}
15+
16+
{{< include "task-tutorial-prereqs.md" >}}
17+
18+
{{% /capture %}}
19+
20+
{{% capture steps %}}
21+
22+
## Configure the Konnectivity service
1123

1224
First, you need to configure the API Server to use the Konnectivity service
1325
to direct its network traffic to cluster nodes:
26+
1427
1. Set the `--egress-selector-config-file` flag of the API Server, it is the
1528
path to the API Server egress configuration file.
16-
2. At the path, create a configuration file. For example,
29+
1. At the path, create a configuration file. For example,
1730

1831
{{< codenew file="admin/konnectivity/egress-selector-configuration.yaml" >}}
1932

20-
Next, you need to deploy the Konnectivity service server and agents.
33+
Next, you need to deploy the Konnectivity server and agents.
2134
[kubernetes-sigs/apiserver-network-proxy](https://github.com/kubernetes-sigs/apiserver-network-proxy)
2235
is a reference implementation.
2336

24-
Deploy the Konnectivity server on your master node. The provided yaml assuming
25-
Kubernetes components are deployed as {{< glossary_tooltip text="static pod"
26-
term_id="static-pod" >}} in your cluster. If not , you can deploy it as a
27-
Daemonset to be reliable.
37+
Deploy the Konnectivity server on your master node. The provided yaml assumes
38+
that the Kubernetes components are deployed as a {{< glossary_tooltip text="static Pod"
39+
term_id="static-pod" >}} in your cluster. If not, you can deploy the Konnectivity
40+
server as a DaemonSet.
2841

2942
{{< codenew file="admin/konnectivity/konnectivity-server.yaml" >}}
3043

@@ -35,3 +48,5 @@ Then deploy the Konnectivity agents in your cluster:
3548
Last, if RBAC is enabled in your cluster, create the relevant RBAC rules:
3649

3750
{{< codenew file="admin/konnectivity/konnectivity-rbac.yaml" >}}
51+
52+
{{% /capture %}}

0 commit comments

Comments
 (0)