2 min read
If we have a bunch of Raspberries on our network and we want to make sure we are not using the default password on any of them, we can using nmap fo trying to brute-force into them
15/09/2021
Read more...2 min read
If we need to take a look at the resources of a Kubernetes cluster, by using kubectl get all we won't be able to see all the resources. Most notably, it won't list Ingress objects. You can take a look at this issue for kubectl for the details but we won't be able to get all the resources using this command, we'll have to install the get-all krew plugin
14/09/2021
Read more...2 min read
With a taint on a node we can repel Pods as we saw on the post regarding taints and tolerations. So, if we want to taint a node we use kubectl taint as follows:
$ kubectl taint nodes minikube application=example:NoSchedule
node/minikube tainted
How do we untaint a node?
13/09/2021
Read more...