Following the steps. If you are checking issues regards some error with your GOROOT may it will solve your problem. … More
Tag: tips
[Tips] – How to troubleshooting/debugging a Kubernetes installation?
Following some commands and checks for you troubleshoot a Kubernetes installation. Checking the installation Check if you are able to … More
[Docker] – Using –build-arg to use safely confidential information to build docker images
In this post, we will do an example by using the flag –build-arg to build the image with a piece of … More
What are the most useful Kubernetes Resources for developers?
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
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