Tag: InfrastructureAsSoftware

Automation - Docker

Top 10 Best Practices For Docker

Containers are the industry standard. They are a unit of software that packages up an application’s code and all its dependencies for it to run reliably from one environment to another. More specifically, a Docker container image is used as a stand-alone, lightweight software package with everything needed to run your application.  Organizations from banking…

Automation - DevOps - Infrastructure as Code - Kubernetes

Building Custom Kubernetes Operators Part 3: Building Operators in Go using Operator SDK

Kubernetes operators were introduced as an implementation of the Infrastructure as Software concept. Using them you can abstract the deployment of applications and services in a Kubernetes cluster. This is the third in a series of articles explaining how operators work, and how they can be implemented in different languages. Introduction Previously in this series…