Skip to content

Commit

Permalink
Clarification on create-cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrudge committed Apr 16, 2019
1 parent f58d81d commit 42061be
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ <h3>Objectives</h3>
<div class="col-md-8">
<h3>Kubernetes Clusters</h3>
<p>
<b>Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit.</b> The abstractions in Kubernetes allow you to deploy containerized applications to a cluster without tying them specifically to individual machines. To make use of this new model of deployment, applications need to be packaged in a way that decouples them from individual hosts: they need to be containerized. Containerized applications are more flexible and available than in past deployment models, where applications were installed directly onto specific machines as packages deeply integrated into the host. <b>Kubernetes automates the distribution and scheduling of application containers across a cluster in a more efficient way.</b> Kubernetes is an open-source platform and is production-ready.
<b>Kubernetes coordinates clusters of computers.</b> These computers work as a single unit. Kubernetes allows you to deploy applications in containers to a cluster. It does this without tying them to a single machine. To use this deployment model, we first disconnect applications from their individual hosts. In other words, we put them in containers. Such applications are more flexible and available. In past deployment models, we would install applications onto specific machines
as packages. These apps would be integrated into the host. Kubernetes distributes and schedules these containers. <b>Kubernetes is open-source and ready to go live.</b>
</p>
<p>A Kubernetes cluster consists of two types of resources:
<ul>
Expand All @@ -49,7 +50,7 @@ <h3>Summary:</h3>
</div>
<div class="content__box content__box_fill">
<p><i>
Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters.
Kubernetes is a production-grade, open-source platform that schedules and executes container clusters
</i></p>
</div>
</div>
Expand Down

0 comments on commit 42061be

Please sign in to comment.