Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisses committed Feb 22, 2022
1 parent 7a21eb2 commit 60f121f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snippets/chapter1/commands-chap1.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
kubectl get rs webserver

##### delete a Pod and watch it getting respawned
kubectl delete webserver-YOURPODID
kubectl delete pod webserver-YOURPODID
kubectl get rs webserver

##### delete the ReplicaSet which also deletes the associated Pods
Expand Down Expand Up @@ -111,7 +111,7 @@
kubectl get pvc

##### Create a Deployment that creates Pods that bind to the PersistentVolumeClaim
kubectl apply -f snippets/chapter1/webserver-pvc-deployment.yaml
kubectl apply -f snippets/chapter1/webserver-pvc-deployment.yaml

##### checking your frontend results in an error...
minikube service webserver
Expand All @@ -135,7 +135,7 @@
kubectl get pods -n dev

##### check the logs to inspect whether curl was successful
kubectl logs -n dev curl-service-fqdn-YOURPODIP
kubectl logs -n dev curl-service-fqdn-YOURPODID



Expand Down

0 comments on commit 60f121f

Please sign in to comment.