Aug 7, 2021
Terraform HashiCorp certification - Infrastructure as Code
Learn how to ace the terraform hashicorp certification and become a DevOps engineering
Aug 7, 2021
Terraform HashiCorp certification - Infrastructure as Code
Learn how to ace the terraform hashicorp certification and become a DevOps engineering
May 15, 2020
Tips for writing docker files - Basic setup, Caching, root user, services organization, networking and resource limits
Docker has revolutionized how developers build and deploy applications, being one of the most popular container engine. Docker has support for different programming languages and runs natively on Linux, as opposed to virtual machines that mimic an entire operational system, docker containers run on Linux namespaces, removing the overhead that...
May 1, 2021
Kubernetes quick notes deployment (WIP)
As opposed to docker that operates on the container level directly, kubernetes has a different approach as such there are a set of steps required to get the application running into the cluster. For example, in docker a simple docker run creates the container and starts it. In kubernetes, first...