Skip to content

Commit

Permalink
Update README.k8s.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricve committed Aug 18, 2024
1 parent cc43095 commit b31bda3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b31bda3

Please sign in to comment.