From ff5e73e15e290468410b73f179f3babd4e590c88 Mon Sep 17 00:00:00 2001 From: Simon Habtu Date: Mon, 18 Feb 2019 13:45:37 +0100 Subject: [PATCH] Typo Hopefully I'm not misunderstanding, but the instructions are for commands that should be ran on controller nodes but says worker node. Caused a bit of confusion during the tutorial. --- docs/08-bootstrapping-kubernetes-controllers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/08-bootstrapping-kubernetes-controllers.md b/docs/08-bootstrapping-kubernetes-controllers.md index 1c2883b..b35b520 100644 --- a/docs/08-bootstrapping-kubernetes-controllers.md +++ b/docs/08-bootstrapping-kubernetes-controllers.md @@ -279,7 +279,7 @@ ok ## RBAC for Kubelet Authorization -In this section you will configure RBAC permissions to allow the Kubernetes API Server to access the Kubelet API on each worker node. Access to the Kubelet API is required for retrieving metrics, logs, and executing commands in pods. +In this section you will configure RBAC permissions to allow the Kubernetes API Server to access the Kubelet API on each controller node. Access to the Kubelet API is required for retrieving metrics, logs, and executing commands in pods. > This tutorial sets the Kubelet `--authorization-mode` flag to `Webhook`. Webhook mode uses the [SubjectAccessReview](https://kubernetes.io/docs/admin/authorization/#checking-api-access) API to determine authorization.