As part of the Kubernetes community's ongoing effort to improve security and maintain the integrity of container images, they periodically deprecate container image repositories. This means that applications running on Kubernetes clusters using the deprecated repositories will no longer receive updates or patches, and …
Read MoreToday we will see how to migrate all ECR images from one AWS region to another AWS region. First, we will learn come basic. To list the repositories in your AWS Elastic Container Registry (ECR) using the AWS CLI, you can use the following command: 1 2aws ecr describe-repositories This command returns a list of …
Read MoreZero ETL is a new revolutionary approach from Amazon Web Services that enables customers to analyze Amazon Aurora data with Amazon Redshift in near real time, eliminating the need to extract, transform and load (ETL) data between services. Amazon Aurora zero-ETL integration with Amazon Redshift enables customers to …
Read MoreIn this blog we will learn how to add true/false option in cloudformation to configure VPC flow logs. Note: To learn basic of cloudformation, please check our old blog: Click me Main Script: This script will create a VPC, 3 private subnet, 3 public subnet, enable VPC flow logs(Optional), NAT gateway for private …
Read MoreIn this blog we will learn, how to add permission or role in existing User. In this we will use db.updateUser() method to update the user’s profile on the database on which you run the method. An update to a field completely replaces the previous field’s values. This includes updates to the user’s roles array. Steps to …
Read MoreIn this blog, we will copy last 24 hours files from local windows server to AWS S3. Let's start to achieve this: Note: For this script, we need to install AWS CLI on local Windows machine and we need configure IAM user credentials with S3 get and put object permission. Step 1: Create IAM user and download the access …
Read MoreIn this blog, we will write a python lambda code which will restart our ECS services. Please follow the below steps to achieve this. Step 1: Create IAM policy for an IAM Role. Copy the below policy and paste it in your IAM policy. 1{ 2 "Version": "2012-10-17", 3 "Statement": [ 4 { 5 "Sid": "VisualEditor0", 6 "Effect": …
Read MoreAmazon Connect now provides a new API to search for queues in your Amazon Connect instance. This new API provides a programmatic and flexible way to search for queues by name, description, or tags. For example, you can now use this API to search for all queues with "priority" in the description. To learn more about …
Read MoreIn this post we will change the timezone of dokcer. Method 1: Via Dockerfile. Add below lines in Dockerfile to chnage the timezone to IST. 1RUN date 2ENV TZ=Asia/Calcutta 3RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone 4RUN date Example of Docker file: 1From tomcat:9.0 2RUN date 3ENV …
Read MoreToday we will write a python code in lambda which will connect with our mongodb Atlas and list all databases. Step 1: Install Dependencies packages in Lambda Layers. 1Package: 21: pymongo 32: dnspython Note: To learn how to add python packages in lambda layers. Use the this [link] …
Read More