Fix orders of yaml of custom-resource-definitions (#14254)
The orders of kind and metadata were inconsistent, and that made the doc unreadable. This fixes the orders in consistent way.pull/14259/head
parent
a1e774fd09
commit
c739e66c5a
|
@ -142,6 +142,7 @@ from the yaml you used to create it:
|
|||
|
||||
```console
|
||||
apiVersion: v1
|
||||
kind: List
|
||||
items:
|
||||
- apiVersion: stable.example.com/v1
|
||||
kind: CronTab
|
||||
|
@ -156,7 +157,6 @@ items:
|
|||
spec:
|
||||
cronSpec: '* * * * */5'
|
||||
image: my-awesome-cron-image
|
||||
kind: List
|
||||
metadata:
|
||||
resourceVersion: ""
|
||||
selfLink: ""
|
||||
|
|
Loading…
Reference in New Issue