Skip to content

Commit f79eee0

Browse files
authored
Update _index.md
1 parent b1448ec commit f79eee0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

content/en/docs/concepts/overview/_index.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ Let's take a look at why Kubernetes is so useful by going back in time.
122122
![Deployment evolution](/images/docs/Container_Evolution.svg)
123123

124124
**Traditional deployment era:**
125+
125126
Early on, organizations ran applications on physical servers. There was no way to define
126127
resource boundaries for applications in a physical server, and this caused resource
127128
allocation issues. For example, if multiple applications run on a physical server, there
@@ -130,7 +131,9 @@ the other applications would underperform. A solution for this would be to run e
130131
on a different physical server. But this did not scale as resources were underutilized, and it
131132
was expensive for organizations to maintain many physical servers.
132133

133-
**Virtualized deployment era:** As a solution, virtualization was introduced. It allows you
134+
**Virtualized deployment era:**
135+
136+
As a solution, virtualization was introduced. It allows you
134137
to run multiple Virtual Machines (VMs) on a single physical server's CPU. Virtualization
135138
allows applications to be isolated between VMs and provides a level of security as the
136139
information of one application cannot be freely accessed by another application.
@@ -143,7 +146,9 @@ resources as a cluster of disposable virtual machines.
143146
Each VM is a full machine running all the components, including its own operating
144147
system, on top of the virtualized hardware.
145148

146-
**Container deployment era:** Containers are similar to VMs, but they have relaxed
149+
**Container deployment era:**
150+
151+
Containers are similar to VMs, but they have relaxed
147152
isolation properties to share the Operating System (OS) among the applications.
148153
Therefore, containers are considered lightweight. Similar to a VM, a container
149154
has its own filesystem, share of CPU, memory, process space, and more. As they

0 commit comments

Comments
 (0)