From e78c03800ac5588b7610ead3268b0dbd4ba11ce4 Mon Sep 17 00:00:00 2001
From: Jailton Lopes
Date: Sat, 27 Feb 2021 13:44:20 -0300
Subject: [PATCH] Update Tutorial Deploy App to use the "control plane"
terminology.
* Update page content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
* Update image content/en/docs/tutorials/kubernetes-basics/public/images/module_02_first_app.svg
Signed-off-by: Jailton Lopes
---
.../deploy-app/deploy-intro.html | 2 +-
.../public/images/module_02_first_app.svg | 783 +++++++++++++-----
2 files changed, 558 insertions(+), 227 deletions(-)
diff --git a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
index 2ee67382fd..15b6d00a6c 100644
--- a/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
+++ b/content/en/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.html
@@ -31,7 +31,7 @@ weight: 10
Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it.
To do so, you create a Kubernetes Deployment configuration. The Deployment instructs Kubernetes
how to create and update instances of your application. Once you've created a Deployment, the Kubernetes
- master schedules the application instances included in that Deployment to run on individual Nodes in the
+ control plane schedules the application instances included in that Deployment to run on individual Nodes in the
cluster.