GitOps with ArgoCD

Gitops with Argo CD

GitOps is a methodology for continuous deployment using a Git repository as the single source of truth. Argo CD is a declarative, continuous delivery GitOps operator for kubernetes. In this post we will deploy ArgoCD to a kind cluster and deploy an application, the GitOps way.

August 22, 2022 · (updated December 16, 2023) · 9 min · Pradeep Loganathan
GitOps

From Code to Cloud : The Rise of GitOps in Automated Deployments

GitOps is a methodology for continuous deployment using a Git repository as the single source of truth. The repository contains the YAML manifests or Helm charts for the Kubernetes resources to be created. The Git repo is used to store, track and version control changes to these YAML files.

July 7, 2022 · (updated December 25, 2023) · 11 min · Pradeep Loganathan

Creating a Windows VM using Terraform

This post is a follow up on the Terraform 101 sessions for the Sunshine Coast dotnet user group. The slides and the code from the session are below. Slides Terraform 101 from Pradeep Loganathan Creating a Windows Virtual Machine provider "azurerm" { version = "=2.8.0" features {} } #create the resource group resource "azurerm_resource_group" "rg" { name = "ateam-resource-group" location = "australiaeast" } #create the virtual network resource "azurerm_virtual_network" "vnet1" { resource_group_name = azurerm_resource_group....

May 18, 2020 · (updated September 3, 2022) · 2 min · Pradeep Loganathan