Following a diagram to check the most useful k8s resources for developers. Reference: https://www.oreilly.com/library/view/kubernetes-patterns/9781492050278/ch01.html Understanding the mainly Resources Following some … More
Tag: tips
How to have kubectl auto-completion in MacOS X?
If you try to follow the steps in the k8s docs for a MaOS environment you will see that it will … More
[MacOsX] – How to install Prometheus, Grafana, and AlertManager in Minikube?
Pre-requirements: Have the Minikube installed and working already. See the post How to install Minikube with UI in the MacOsX? … More
[Golang] – How to clean my local mod dev env?
Sometimes can be required clean the go cache and/or binaries for example in order to solve local issues and/or reproduce … More
[Docker] – How to run docker images?
Following the command to run docker images locally. docker run -it –rm <image:tag> <command> NOTE: The “–rm” will remove the image … More
[OpenShift] – Learning Openshift by practical and guided exercises
I’d like to recommend the following website which will provide excellent content for who is looking for to learn OpenShift … More
[Tip] – Create Pull Request templates to avoid PR’s without required info
To add a PR template it really simple. You just must create a file with the name PULL_REQUEST_TEMPLATE.md and the info/template as … More
[Utils] – How to don’t let your mac sleep?
Install the app caffeine. So, when you want to leave the computer but don’t want that it fails to sleep you can … More
[NodeJS] – How to manage Node versions installed locally? How to be able to switch the node version used?
To do it use nvm and install locally many NodeJS versions via the command nvm install <NodeJS> then choose the NodeJS version … More
[Utils] – Configuration to show the current git branch on the terminal
Following the result of this setup. To do this setup go to the bash_profile and add the following code. (~/.bash_profile … More