Skip to content
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

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/en/docs/reference/glossary/network-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ tags:
- networking
- architecture
- extension
- core-object
---
A specification of how groups of Pods are allowed to communicate with each other and with other network endpoints.

Expand Down
1 change: 1 addition & 0 deletions content/en/docs/reference/glossary/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ short_description: >

aka:
tags:
- core-object
- fundamental
---
A node is a worker machine in Kubernetes.
Expand Down
28 changes: 28 additions & 0 deletions content/en/docs/reference/glossary/pod-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: PodTemplate
id: pod-template
date: 2024-10-13
short_description: >
A template for creating Pods.

aka:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
aka:
aka:
- pod template

- pod template
tags:
- core-object

---
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 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.