Merge pull request #693 from ffledgling/ffledgling-patch-1
Fix broken link
This commit is contained in:
commit
c0749bc8a2
|
@ -48,7 +48,7 @@ They are a core concept used by two additional Kubernetes building blocks: Deplo
|
|||
|
||||
Now that you know how to make awesome, multi-container, labeled Pods and you want to use them to build an application, you might be tempted to just start building a whole bunch of individual Pods, but if you do that, a whole host of operational concerns pop up. For example: how will you scale the number of Pods up or down? How will you roll out a new release?
|
||||
|
||||
The answer to those questions and more is to use a [_Deployment_](/docs/user-guide/deployment/) to manage maintaining and updating your running _Pods_.
|
||||
The answer to those questions and more is to use a [_Deployment_](/docs/user-guide/deployments/#what-is-a-deployment) to manage maintaining and updating your running _Pods_.
|
||||
|
||||
A Deployment object defines a Pod creation template (a "cookie-cutter" if you will) and desired replica count. The Deployment uses a label selector to identify the Pods it manages, and will create or delete Pods as needed to meet the replica count. Deployments are also used to manage safely rolling out changes to your running Pods.
|
||||
|
||||
|
|
Loading…
Reference in New Issue