17b5158f24
Before: Example runs pod without creating deployment ```sh kubectl run --image=nginx nginx-app --port=80 ``` But later in document mentions: ``` deployment "nginx-app" created ``` After: Pod is created with deployment. (Aligned with other language examples)