-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include missing core object in glossary #48318
Include missing core object in glossary #48318
Conversation
3bc0dd4
to
6b47ec3
Compare
/assign |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The core object is called PodTemplate; let's fix that.
@@ -0,0 +1,17 @@ | |||
--- | |||
title: Pod Template |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: Pod Template | |
title: PodTemplate |
id: pod-template | ||
date: 2024-10-13 | ||
short_description: > | ||
A Pod Template defines template for creating pods. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A Pod Template defines template for creating pods. | |
A template for creating Pods. |
short_description: > | ||
A Pod Template defines template for creating pods. | ||
|
||
aka: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aka: | |
aka: | |
- pod template |
- core-object | ||
|
||
--- | ||
An API object that defines a template for creating {{< glossary_tooltip text="pod" term_id="pod" >}}, typically used in higher-level controllers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An API object that defines a template for creating {{< glossary_tooltip text="pod" term_id="pod" >}}, typically used in higher-level controllers. | |
An API object that defines a template for creating {{< glossary_tooltip text="Pods" term_id="pod" >}}. | |
The PodTemplate API is also embedded in API definitions for workload management, such as | |
{{< glossary_tooltip text="Deployment" term_id="deployment" >}} or | |
{{< glossary_tooltip text="StatefulSets" term_id="StatefulSet" >}}. |
|
||
<!--more--> | ||
|
||
Pod Templates provide a specification that includes metadata, labels, and a pod's desired state, which is utilized by controllers like {{< glossary_tooltip text="deployment" term_id="deployment" >}} and {{< glossary_tooltip text="statefulset" term_id="statefulset" >}} to create and manage multiple {{< glossary_tooltip text="replicas" term_id="" >}} of {{< glossary_tooltip text="pod" term_id="pod" >}}. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try this:
Pod Templates provide a specification that includes metadata, labels, and a pod's desired state, which is utilized by controllers like {{< glossary_tooltip text="deployment" term_id="deployment" >}} and {{< glossary_tooltip text="statefulset" term_id="statefulset" >}} to create and manage multiple {{< glossary_tooltip text="replicas" term_id="" >}} of {{< glossary_tooltip text="pod" term_id="pod" >}}. | |
Pod templates allow you to define common metadata (such as labels, or a template for the name of a | |
new Pod) as well as to specify a pod's desired state. | |
[Workload management](/docs/concepts/workloads/controllers/) controllers use Pod templates | |
(embedded into another object, such as a Deployment or StatefulSet) | |
to define and manage one or more {{< glossary_tooltip text="Pods" term_id="pod" >}}. | |
When there can be multiple Pods based on the same template, these are called | |
{{< glossary_tooltip term_id="replica" text="replicas" >}}. | |
Although you can create a PodTemplate object directly, you rarely need to do so. |
@sftim I've added the changes as you suggested ! |
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
I'm going to edit the issue description to remove
as this PR is not a complete fix. |
/lgtm |
LGTM label has been added. Git tree hash: 5f5117522c08920ab6c7036c7f45572e954c34a0
|
@dipesh-rawat can you please approve the PR. |
/assign @salaxander |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dipesh-rawat The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Description
Issue
#45972