From 791d7ad969dda686477ed7ce7bacb7bd6a734740 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Mon, 12 Oct 2020 19:01:32 +0100 Subject: [PATCH] Add object to glossary --- content/en/docs/reference/glossary/object.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 content/en/docs/reference/glossary/object.md diff --git a/content/en/docs/reference/glossary/object.md b/content/en/docs/reference/glossary/object.md new file mode 100755 index 0000000000..1e3a6165fd --- /dev/null +++ b/content/en/docs/reference/glossary/object.md @@ -0,0 +1,19 @@ +--- +title: Object +id: object +date: 2020-10-12 +full_link: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/#kubernetes-objects +short_description: > + A entity in the Kubernetes system, representing part of the state of your cluster. +aka: +tags: +- fundamental +--- +An entity in the Kubernetes system. The Kubernetes API uses these entities to represent the state +of your cluster. + +A Kubernetes object is typically a “record of intent”—once you create the object, the Kubernetes +{{< glossary_tooltip text="control plane" term_id="control-plane" >}} works constantly to ensure +that the item it represents actually exists. +By creating an object, you're effectively telling the Kubernetes system what you want that part of +your cluster's workload to look like; this is your cluster's desired state.