diff --git a/content/en/docs/reference/glossary/network-policy.md b/content/en/docs/reference/glossary/network-policy.md index 8fb33b666ab97..8371da805406a 100644 --- a/content/en/docs/reference/glossary/network-policy.md +++ b/content/en/docs/reference/glossary/network-policy.md @@ -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. diff --git a/content/en/docs/reference/glossary/node.md b/content/en/docs/reference/glossary/node.md index 4a6df3f8dc8fa..49ba2634886ec 100644 --- a/content/en/docs/reference/glossary/node.md +++ b/content/en/docs/reference/glossary/node.md @@ -8,6 +8,7 @@ short_description: > aka: tags: +- core-object - fundamental --- A node is a worker machine in Kubernetes. diff --git a/content/en/docs/reference/glossary/pod-template.md b/content/en/docs/reference/glossary/pod-template.md new file mode 100644 index 0000000000000..7e08fcaed5878 --- /dev/null +++ b/content/en/docs/reference/glossary/pod-template.md @@ -0,0 +1,17 @@ +--- +title: Pod Template +id: pod-template +date: 2024-10-13 +short_description: > + A Pod Template defines template for creating pods. + +aka: +tags: +- core-object + +--- +An API object that defines a template for creating {{< glossary_tooltip text="pod" term_id="pod" >}}, typically used in higher-level controllers. + + + +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" >}}.