IAM Programmatic access and AWS CLI 🚀 ☁IAM Programmatic access IAM (Identity and Access Management) programmatic access refers to the ability to interact with AWS (Amazon Web Services) resources using APIs (Application Programming Interfaces) or SDKs (Software Development Kits) rather tha...May 21, 2023·2 min read
Deployment of node-todo-app on ECSObjective of this project The objective of deploying a Node.js Todo application on ECS is to demonstrate how to build and deploy web application using containers and container orchestration. The project include the following steps: Build the Docker ...May 11, 2023·4 min read
Kubernetes Important interview Questions.What is Kubernetes and why it is important? Kubernetes is an open-source container orchestration system that helps manage and automate the deployment, scaling, and management of containerized applications. Kubernetes is important because it allows de...May 10, 2023·5 min read
Managing Persistent Volumes in Your DeploymentThink of a Persistent Volume as a piece of storage that is separate from your application containers. It's like a virtual hard drive that you can use to store data that needs to persist beyond the life of your containers. A Persistent Volume is creat...May 10, 2023·2 min read
ConfigMaps and Secrets in KubernetesIn Kubernetes, ConfigMaps and Secrets are used to store and manage configuration data that is needed by your applications. ConfigMaps are used to store non-sensitive configuration data such as environment variables, command-line arguments, and config...May 10, 2023·2 min read
Working with Services in KubernetesIn Kubernetes, a service is an abstraction that represents a logical set of pods (or a single pod) and a policy by which to access them. Pods are the smallest deployable units in Kubernetes, and they can be thought of as individual containers that ru...May 8, 2023·3 min read
Working with Namespaces and Services in KubernetesWhat are Namespaces and Services in k8s In Kubernetes, Namespaces and Services are two distinct but important concepts that are used to organize and manage resources in a cluster. A Namespace is a virtual cluster inside a Kubernetes cluster, which pr...May 5, 2023·3 min read