From 6d23e7ae82791adc72e12adb6ea5b837e515ae4d Mon Sep 17 00:00:00 2001 From: Benito Martin <116911431+benitomartin@users.noreply.github.com> Date: Sun, 30 Jun 2024 14:48:08 +0200 Subject: [PATCH] Update README.md --- README.md | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4ed7e07..f82fe63 100644 --- a/README.md +++ b/README.md @@ -148,22 +148,38 @@ The Python version used for this project is Python 3.10. You can follow along th 11. Verify Kubernetes is running after deployment ```bash - kubectl get po + # Get the Pods + kubectl get po + + # Get the Nodes + kubectl get nodes + + # Get the Services kubectl get svc + + # Get the logs of a pod + kubectl logs llama-gke-deploy-668b58b455-fjwvq + + # Describe a pod + kubectl describe pod llama-gke-deploy-668b58b455-fjwvq + + # Check CPU usage + kubectl top pod llama-gke-deploy-668b58b455-fjwvq ``` - -
-
-
+
+
-
-