Skip to content
Snippets Groups Projects

Nrp

Merged Huijun Zhu requested to merge nrp into master
Files
7
@@ -42,7 +42,7 @@ kubectl get services
Let’s create a simple generic pod, and login into it.
You can copy-and-paste the lines below. Create the `pod1.yaml` file with the following contents:
You can copy-and-paste the lines below. Create the `pod1.yaml` file with the following content:
```yaml
apiVersion: v1
@@ -99,7 +99,7 @@ Events and other useful information about the pod can be seen in `describe`:
kubectl describe pod test-pod
```
If the pod is in Running state, we can check it's logs
If the pod is in Running state, we can check its logs
```
kubectl logs test-pod
@@ -181,7 +181,7 @@ What does the network look like now?
What is the status of the files your created?
Finally, let’s delete explicitly the pod:
Finally, let’s delete the pod explicitly:
```
kubectl delete pod test-pod
Loading