Update README.k8s.md

This commit is contained in:
Cedric Verstraeten
2024-08-18 21:33:49 +02:00
parent cc430955f2
commit b31bda3549

View File

@@ -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.