Kubernetes on a Mac

Enable auto-completion Upgrade bash, install autocompletion and enable them: https://medium.com/merapar/fixing-bash-autocompletion-on-macos-for-kubectl-and-kops-e87f019652e8 List all pod (sorted by node) kubectl get pods -o wide –sort-by=”{.spec.nodeName}” –all-namespaces 

SSL without DNS

A lot of times during development I need to make a “box” accessible to the internet using SSL (HTTPS). In order to use SSL you need a certificate. The free option to get a certificate is to use let’s encrypt. In order to get a certificate using let’s encrypt you Read more…