Skip to content

Commit 05ae0c6

Browse files
authored
Merge pull request #37869 from windsonsea/objecty
Use a consistent style of URLs and headings in /kubernetes-objects.md
2 parents db3af96 + 25aa28f commit 05ae0c6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

content/en/docs/concepts/overview/working-with-objects/kubernetes-objects.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
title: Understanding Kubernetes Objects
33
content_type: concept
44
weight: 10
5-
card:
5+
card:
66
name: concepts
77
weight: 40
88
---
99

1010
<!-- overview -->
11+
1112
This page explains how Kubernetes objects are represented in the Kubernetes API, and how you can
1213
express them in `.yaml` format.
1314

1415
<!-- body -->
16+
1517
## Understanding Kubernetes objects {#kubernetes-objects}
1618

1719
*Kubernetes objects* are persistent entities in the Kubernetes system. Kubernetes uses these
@@ -32,7 +34,7 @@ interface, for example, the CLI makes the necessary Kubernetes API calls for you
3234
the Kubernetes API directly in your own programs using one of the
3335
[Client Libraries](/docs/reference/using-api/client-libraries/).
3436

35-
### Object Spec and Status
37+
### Object spec and status
3638

3739
Almost every Kubernetes object includes two nested object fields that govern
3840
the object's configuration: the object *`spec`* and the object *`status`*.
@@ -86,7 +88,7 @@ The output is similar to this:
8688
deployment.apps/nginx-deployment created
8789
```
8890

89-
### Required Fields
91+
### Required fields
9092

9193
In the `.yaml` file for the Kubernetes object you want to create, you'll need to set values for the following fields:
9294

@@ -116,9 +118,9 @@ detail the structure of that `.status` field, and its content for each different
116118
## {{% heading "whatsnext" %}}
117119

118120
Learn more about the following:
119-
* [Pods](https://kubernetes.io/docs/concepts/workloads/pods/) which are the most important basic Kubernetes objects.
120-
* [Deployment](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/) objects.
121-
* [Controllers](https://kubernetes.io/docs/concepts/architecture/controller/) in Kubernetes.
122-
* [Kubernetes API overview](https://kubernetes.io/docs/reference/using-api/) which explains some more API concepts.
123-
* [kubectl](https://kubernetes.io/docs/reference/kubectl/) and [kubectl commands](https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands).
124121

122+
* [Pods](/docs/concepts/workloads/pods/) which are the most important basic Kubernetes objects.
123+
* [Deployment](/docs/concepts/workloads/controllers/deployment/) objects.
124+
* [Controllers](/docs/concepts/architecture/controller/) in Kubernetes.
125+
* [Kubernetes API overview](/docs/reference/using-api/) which explains some more API concepts.
126+
* [kubectl](/docs/reference/kubectl/) and [kubectl commands](/docs/reference/generated/kubectl/kubectl-commands).

0 commit comments

Comments
 (0)