Studio-DevOps

data codes through eyeglasses

How To Deploy Fargate Using AWS CDK

Reading Time: 5 minutes Introduction What is AWS Fargate ? In this blog we’ll see How To Deploy Fargate Using AWS CDK. As per the aws official documentation ” AWS Fargate is a serverless, pay-as-you-go compute engine that lets you focus on building applications without managing servers. “ In simple words Fargate allows you to run container on ECS In aws without managing the servers.Using this makes it easier to Continue Reading

How to Setup AWS App Mesh with EKS?

Reading Time: 5 minutes Introduction AWS App Mesh is a service mesh that provides application-level networking to make it easy for your services to communicate with each other across multiple types of compute infrastructure. Additionally, It gives end-to-end visibility and high-availability for your applications. Further, it uses Envoy an open source proxy, making it compatible with a wide range of AWS partner and open source tools for connecting and Continue Reading

close up photo of programming of codes

How to Create a Storage Bucket in GCP with Terraform?

Reading Time: 3 minutes In this article, we are going to provision a Cloud Storage Bucket and maintain it with the help of terraform. Let us first understand cloud storage first What is Cloud Storage(Buckets)? Cloud Storage is the Google Cloud platform’s object storage system. Objects here can be of any type, either files or large binary objects. These objects are organized into buckets. Please note that cloud storage Continue Reading

data codes through eyeglasses

How to Create KMS Keys in GCP with Terraform?

Reading Time: 4 minutes In this blog, we will be learning about KMS keys for encryption in google cloud and how we can provision them with terraform. What is KMS? KMS is a key management service in google cloud where we can create key rings and keys for encryption By default every resource in GCP is encrypted with google managed encryption keys but with the help of this KMS, Continue Reading

How To Do Vulnerability Scanning In K8s With Kube-Hunter :

Reading Time: 5 minutes Hello Folks.. I hope you all are doing so well. In this blog, we will be looking at How To Do Vulnerability Scanning In K8s With Kube-Hunter or a Vulnerability scanning tool, which is called as Kube-Hunter which is provided to us by AQUA Security. We can use this tool to check if there are any Vulnerabilities in your Kubernetes Cluster. There are many ways Continue Reading

Consul Connect integration with Kubernetes

Reading Time: 5 minutes Hello, Readers hope all are doing well and liked my previous blogs on various DevOps tools and practices. If you have not gone through these blogs you can click here for them. Now in this blog, we will be on the journey of understanding consul connect as service mesh and consul connect integration with Kubernetes. So before we start our journey of consul Connect integration with Kubernetes Continue Reading

close up photo of programming of codes

How To Deploy A Docker Container to an AWS Cluster Using Terraform

Reading Time: 7 minutes Hello Readers ! I hope you’re doing well . So here I am with the new post where we’ll learn basic about docker , AWS , docker container ,terraform and also How To Deploy A Docker Container to an AWS Cluster Using Terraform. Stay Tuned and stick to the end and perform the task along with me to do so . Let’s Get Started INTRODUCTION Continue Reading

black and gray laptop computer turned on doing computer codes

How to create Statefulsets workloads Using Kubernetes Python Client

Reading Time: 3 minutes Hello Readers! In this blog we are going to see how we can create a Statefulsets using kubernetes python client . Kubectl is the primary tool for dealing with and managing your clusters from the command line. Through kubectl you can see the status of individual nodes, pods on those nodes, policies and much more besides. But In this blog we will see how we can use Continue Reading

How to Deploy ElasticBeanstalk using Terraform

Reading Time: 4 minutes Hello Readers! In this blog we will see how we can deploy ElasticBeanstalk using terraform. In my previous blog we have seen how to deploy applications in Elastic Beanstalk. There we have seen how AWS takes care of all underlying resources so you don’t have to worry about anything. You can purely concentrate on writing your application code, package it and upload it. And EBS Continue Reading

How To Create Deployment via Kubernetes Python Client :

Reading Time: 3 minutes Hello Folks.. I hope you all are doing so well. In this blog we will see how we can create a deployment using Kubernetes python client. Like we all know that generally we use kubectl commands for creating, listing, updating, deleting the kubernetes resources. But In this blog we will see how we can use python for doing these things with resources. Its going to be Continue Reading

Create AWS EBS Volume Snapshot Using Boto3 Python

Reading Time: 3 minutes Hello Everyone Today we will learn about how to create AWS EBS Volume snapshot using boto3 Python version. Firstly before creating using Python script , we will create on AWS that will be based on User Interface with Manual steps. What is AWS EBS snapshot It provides with the data protection for the long term as well as with the durability that are in EBS Continue Reading

How to Set Bucket Policy Using Boto3

Reading Time: 2 minutes What is Boto3 Boto is a software development kit (SDK) design to enhance the use of the Python programming language by Amazon Web Services. For more details and installation of Boto3 visit the Reference section. Set a bucket policy A bucket’s policy can be set by calling the put_bucket_policy method. Example This is the complete code to set policy. How to generate Bucket policy in aws console Continue Reading

Spring Cloud Pub/Sub

Reading Time: 2 minutes Cloud Pub/Sub Google Cloud Pub/Sub allows services to communicate asynchronously, with latency on the order of 100 milliseconds. Pub/Sub is used for streaming analytics and data integration pipelines to ingest and distribute data. It is equally effective as a messaging- oriented middleware for service integration or as a queue to parallelised tasks. Pub/Sub enables to create systems of event producers and consumers, called publishers and subscribers. Publishers communicate Continue Reading