Skip to content

Commit

Permalink
Add content/en/hypervisor (cncf#1385)
Browse files Browse the repository at this point in the history
* Add content/en/hypervisor

adding the term hypervisor to the glossary

Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Nitish Kumar <justnitish06@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Nitish Kumar <justnitish06@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Nitish Kumar <justnitish06@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update content/en/hypervisor.md

Co-authored-by: Noah Ispas <Noahispas@gmail.com>
Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update hypervisor.md

removed the section that mentions the types of hypervisors

Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

* Update hypervisor.md

updated the term with suggested changes, please point out what points are needed to be addressed and changes required.

Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>

Signed-off-by: Kiran Satya Raj <90622705+KiranSatyaRaj@users.noreply.github.com>
Co-authored-by: Nitish Kumar <justnitish06@gmail.com>
Co-authored-by: Noah Ispas <Noahispas@gmail.com>
  • Loading branch information
3 people authored and seokho-son committed Mar 20, 2023
1 parent 8e14bc9 commit 8b172ff
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions content/en/hypervisor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: Hypervisor
status: Feedback Appreciated
category: Technology
tags: ["application", "", ""]
---

## What it is

A hypervisor enables [virtualization](/virtualization/)
by taking the advantage of [bare metal machine](/bare-metal-machine/) resources
(CPU, Memory, Network, and Storage), dividing them into sub-parts,
and allocating resources accordingly to create [virtual machines (VM)](/virtual-machine/)
until the underlying host reaches its performance limits.

## Problem it addresses

Traditionally, a server could only run applications of a single operating system.
The process of acquiring software takes time. It requires infrastructure with a specific environment
and a team of engineers to manage and monitor them.
Servers were underutilized, considering the computing power of a server it can run multiple operating systems and more applications.
Running applications on bare metal wasn't enough to match the needs of fluctuating traffic.

## How it helps

In the context of [cloud computing](/cloud-computing/), the hypervisor becomes an effective tool.
In contrast to the traditional method of creating a virtual machine, a hypervisor makes the process much simpler and faster.
Hardware resources are logically partitioned and assigned to the VMs keeping them isolated as distinct units,
ensuring they function independently so that issues on one don't affect the others,
and allowing VMs to install any necessary operating system.
A hypervisor is an abstraction over the physical hardware, it takes care of those low-level complexities of managing the VMs and monitoring them,
making VMs loosely bound to hardware, enabling organizations to migrate their applications to the remote servers/cloud
and autoscale their services.
Over time, the use of this [multi-tenant](/multitenancy/) software has reduced computing costs.

0 comments on commit 8b172ff

Please sign in to comment.