From b9003e7075b3d0e21b2a6bbbc09c15cf44d3f6b2 Mon Sep 17 00:00:00 2001 From: ssup2 Date: Thu, 25 Mar 2021 12:28:16 +0000 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fefc16..aababfa 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![kpexec Demo](image/kpexec_Demo.gif) -**kpexec** is a kubernetes cli that runs commands in a container with high privilege. kubectl-exec runs the command with the same privileges as the container. For example, if a container does not have network privileges, the command executed by kubectl-exec also has no network privileges. Also, kubectl-exec does not provide an option to force command to run with high privileges. This makes debugging the pod difficult. +**kpexec** is a kubernetes cli that runs commands in a container with high privileges. kubectl-exec runs the command with the same privileges as the container. For example, if a container does not have network privileges, the command executed by kubectl-exec also has no network privileges. Also, kubectl-exec does not provide an option to force command to run with high privileges. This makes debugging the pod difficult. kpexec helps execute pod debugging smoothly by executing commands with high privileges regardless of container privileges. Also, kpexec supports **tools** mode. If you use tools mode, you can execute tools (commands) that do not exist in the container. The tools mode is useful when there are no tools necessary for debugging in the target container.