From a2b17457b9e152fde87cbfe3e4155f60a831d8e5 Mon Sep 17 00:00:00 2001 From: Dan Keder Date: Wed, 26 Sep 2018 16:53:58 +0200 Subject: [PATCH] Fix a typo in kube-proxy options The cluster.yaml config doesn't accept `kube-proxy`, it only accepts `kubeproxy` like this: ``` services: kubeproxy: extra_args: [] ``` --- content/rke/v0.1.x/en/config-options/services/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rke/v0.1.x/en/config-options/services/_index.md b/content/rke/v0.1.x/en/config-options/services/_index.md index faecbdf08ec..eb16e86019a 100644 --- a/content/rke/v0.1.x/en/config-options/services/_index.md +++ b/content/rke/v0.1.x/en/config-options/services/_index.md @@ -97,4 +97,4 @@ Currently, RKE doesn't support any specific options for the `scheduler` service. ## Kubernetes Network Proxy The [Kubernetes network proxy](https://kubernetes.io/docs/reference/command-line-tools-reference/kube-proxy/) service runs on all nodes and manages endpoints created by Kubernetes for TCP/UDP ports. -Currently, RKE doesn't support any specific options for the `kube-proxy` service. +Currently, RKE doesn't support any specific options for the `kubeproxy` service.