Update kubernetes-objects.md (#16747)
Make `spec` one of the required items.
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
cfd0a2d709
commit
cd1d62ab0f
@@ -62,8 +62,9 @@ In the `.yaml` file for the Kubernetes object you want to create, you'll need to
|
|||||||
* `apiVersion` - Which version of the Kubernetes API you're using to create this object
|
* `apiVersion` - Which version of the Kubernetes API you're using to create this object
|
||||||
* `kind` - What kind of object you want to create
|
* `kind` - What kind of object you want to create
|
||||||
* `metadata` - Data that helps uniquely identify the object, including a `name` string, `UID`, and optional `namespace`
|
* `metadata` - Data that helps uniquely identify the object, including a `name` string, `UID`, and optional `namespace`
|
||||||
|
* `spec` - What state you desire for the object
|
||||||
|
|
||||||
You'll also need to provide the object `spec` field. The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API Reference](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/) can help you find the spec format for all of the objects you can create using Kubernetes.
|
The precise format of the object `spec` is different for every Kubernetes object, and contains nested fields specific to that object. The [Kubernetes API Reference](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/) can help you find the spec format for all of the objects you can create using Kubernetes.
|
||||||
For example, the `spec` format for a `Pod` can be found
|
For example, the `spec` format for a `Pod` can be found
|
||||||
[here](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#podspec-v1-core),
|
[here](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#podspec-v1-core),
|
||||||
and the `spec` format for a `Deployment` can be found
|
and the `spec` format for a `Deployment` can be found
|
||||||
|
|||||||
Reference in New Issue
Block a user