liwm@rmaster01 liwm]$ kubectl create deployment myweb --image=nginx --dry-run=true -o yamlapiVersion: apps/v1kind: Deploymentmetadata: creationTimestamp: null labels: app: myweb name: mywebspec: replicas: 1 selector: matchLabels: app: myweb strategy: {} template: metadata: creationTimestamp: null labels: app: myweb spec: containers: - image: nginx name: nginx resources: {}status: {}[liwm@rmaster01 liwm]$ kubectl explain deployKIND: DeploymentVERSION: apps/v1DESCRIPTION: Deployment enables declarative updates for Pods and ReplicaSets.FIELDS: apiVersion <string> APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources kind <string> Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds metadata <Object> Standard object metadata. spec <Object> Specification of the desired behavior of the Deployment. status <Object> Most recently observed status of the Deployment.[liwm@rmaster01 liwm]$