ajaygite.hashnode.devDay01-TerraWeek Challenge:Introduction to Terraform & BasicsIntroduction In the ever-evolving landscape of IT infrastructure management, Infrastructure as Code (IaC) has emerged as a game-changing approach. It allows organizations to manage and provision infrastructure resources using machine-readable configu...Dec 20, 2023路8 min read
ajaygite.hashnode.devAutomating EBS Snapshot Creation with CloudWatch Events and SNSArchitecture for this lab: We will create a new SNS topic and SNS email subscription that we will use with our CloudWatch Events rule. Create the CloudWatch Events rule that will once-daily snapshot the specified EBS volume and initiates an ema...Dec 8, 2023路1 min read
ajaygite.hashnode.devMastering ConfigMaps and Secrets in KubernetesConfigMaps A ConfigMap is an API object used to store non-confidential data in key-value pairs. Pods can consume ConfigMaps as environment variables, command-line arguments, or configuration files in a volume. A ConfigMap allows you to decouple envir...Dec 7, 2023路7 min read
ajaygite.hashnode.devWorking with Services in Kubernetes馃敼What are Services in K8s? A Kubernetes Service is a mechanism to expose applications both internally and externally. Every service will create an everlasting IP address that can be used as a connector. Additionally, it will open a port that will be...Nov 2, 2023路4 min read
ajaygite.hashnode.devWorking with Namespaces and Services in KubernetesWhat are Namespaces? A namespace is a way to partition and isolate resources within a cluster. It provides a virtual cluster within a physical cluster, allowing multiple teams or applications to coexist without interfering with each other. Namespac...Oct 30, 2023路8 min read