From 468e3a0ffeea5c9a42b5c25da55834ea0699765e Mon Sep 17 00:00:00 2001 From: nprimo Date: Tue, 30 Jan 2024 19:39:08 +0100 Subject: [PATCH] feat(cloud-kube): add specific question to test k8s cluster --- subjects/devops/cloud-kube/audit/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/subjects/devops/cloud-kube/audit/README.md b/subjects/devops/cloud-kube/audit/README.md index 7d6606a97..47a751231 100644 --- a/subjects/devops/cloud-kube/audit/README.md +++ b/subjects/devops/cloud-kube/audit/README.md @@ -64,7 +64,15 @@ Review the student's architecture design, ensuring that it meets the project req ###### Are all the microservices running as expected in the cloud environment? -##### Test CRUD (create, read, update and delete) operations for the `invenotry app` microservice. +##### Ask the student to run the command `kubectl get services`. + +###### Are there enough services deployed to allow proper communication between the pods and the internet? + +##### Ask the student to run the command `kubectl get pvc` or `kubectl get pv`. + +###### Are there enough persistent volumes (or volumes claims) per each database defined in the application? + +##### Test CRUD (create, read, update and delete) operations for the `inventory app` microservice. ###### Is everything working as expected?