Following the command to run docker images locally. docker run -it –rm <image:tag> <command> NOTE: The “–rm” will remove the image … More
Category: Uncategorized
RedHat at@thedevconf in São Paulo at 2019
The RedHat stand was very busy and crowdy and the number of people who just stopped me at the event … More
Girls Who Change the World@UK 2019
I had the incredible opportunity to work with @Angela Bates@IBM as a mentor of a team in this fantastic challenged … More
[OpenShift] – How to setup insecure-registry on Minishift?
Following the command to setup insecure-registry on Minishift and allow pull public docker or quay.io images. $ minishift config set … More
[Operator-Framework] – How to debug a Golang operator project?
IntelliJ IDEA/Golang Following the steps that should be executed from the root dir of your operator project. # Export the … More
[Algorithms] – Calc of factorial as a good example of recursion in go
Following the code implementation. func Factorial(n int) int { if n == 0 || n == 1 { return 1 … More
[Algorithms] – The classic Fibonacci with and without recursion in golang
What is Fibonacci? See more here What is Fibonacci formula? Fibonacci sequence, such that each number is the sum of … More
[Algorithms] – Creating an LRUCache in golang
What is an LRUCache? The LRU means discards the least recently used items first. It means that a cache implementation … More
[Kubernates/Openshift] – How to install/deploy/use OLM (Operator Lifecycle Manager) in Minishift?
Following the steps to install. 1. Install Minishift See here how to install Minishift with your SO and with the virtualization … More
[Kubernates/Openshift] – Operators getting started from A to Z
The idea of this post is centralized and guide you through for all the first steps required for we getting … More