Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion core-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ kubectl get pods -o=jsonpath="{.items[*]['metadata.name', 'metadata.namespace']}
// creating a pod
kubectl run nginx --image=nginx --restart=Never

//Or using generator
kubectl run nginx --image=nginx --generator=run-pod/v1


// List the pod
kubectl get po
```
Expand Down Expand Up @@ -333,7 +337,7 @@ kubectl get pods --sort-by=.metadata.name
<p>

```
kubectl get pods--sort-by=.metadata.creationTimestamp
kubectl get pods --sort-by=.metadata.creationTimestamp
```
</p>
</details>