diff --git a/README.k8s.md b/README.k8s.md index 6f7ecc5..73c4900 100644 --- a/README.k8s.md +++ b/README.k8s.md @@ -98,13 +98,18 @@ Remove the taint to allow scheduling of pods on the master node, as this is a si kubectl taint nodes --all node-role.kubernetes.io/control-plane- ``` -Verify the instalation +Verify the installation by checking the status of the nodes and pods. Wait for all components to be in the `Running` state. ```bash -kubectl get nodes -o wide -kubectl get pods -A +# Check the status of the nodes +kubectl get nodes + +# Check the status of the pods in the kube-system namespace +kubectl get pods -n kube-system ``` +Ensure that all nodes are in the Ready state and all pods are in the Running state before proceeding with further configurations or deployments. + ## Dependencies When installing the Kerberos.io stack, several dependencies are required for storage, such as a database (e.g., MongoDB) and a message broker (e.g., RabbitMQ) for asynchronous behavior. We will install these components before setting up the Kerberos Agents and Kerberos Vault.