All Things Helm 3.0

What is Helm? Helm is a package manager for Kubernetes. A package manager generally aims to provide a single command to install some software. Installing software likely has dependencies - a package manager should be able to resolve those dependencies. A package manager is supposed to abstract some complexities of installing software and making it … Continue reading All Things Helm 3.0

Terraform quickstart

What is Terraform? Terraform is an open-source IoC (infrastructure as code) software by HashiCorp. It allows us to define and provision infrastructure using a high-level configuration language. For example, the following piece of code will create a server on AWS. provider "aws" { region = "us-east-1" } resource "aws_instance" "example" { ami = "ami-12345678" instance_type … Continue reading Terraform quickstart