Amazon Elastic container RegistryECR Amazon Elastic Container Registry (Amazon ECR) is a fully managed container registry service provided by Amazon Web Services (AWS). It allows developers to easily store, manage, and deploy Docker container images. Amazon ECR is tightly integrated...Sep 13, 2023·5 min read·8
AWS event triggeringYou may remotely execute workflows and procedures in response to events in your AWS environment by using AWS Event Triggering. Create rules that listen for particular circumstances and initiate responses using AWS EventBridge, Amazon CloudWatch Event...Apr 22, 2023·5 min read·4
ConfigMaps in k8sWhat is a Kubernetes ConfigMap In Kubernetes, a ConfigMap is an API object used to store non-confidential configuration data for applications running in a cluster. This data can include configuration files, command-line arguments, environment variabl...Apr 18, 2023·4 min read·21
Resources in k8sWhat is a Custom Resource In Kubernetes, a custom resource (CR) is an extension mechanism that allows users to define their own API resources and controllers. This allows users to introduce new abstractions and workflows into their Kubernetes cluster...Apr 18, 2023·8 min read·63
Security in k8sRBAC RBAC stands for Role-Based Access Control, which is a security mechanism used by Kubernetes to control access to Kubernetes resources. RBAC allows cluster administrators to define roles and role bindings that control what actions different users...Apr 17, 2023·8 min read·16
Everything about IngressWhat is Ingress In Kubernetes, ingress is a way to expose HTTP and HTTPS services running within a cluster to the outside world. It acts as a traffic controller for incoming traffic to a cluster, routing requests to the appropriate service based on t...Apr 17, 2023·6 min read·29
Services in k8sWhat if there are no services in k8s If there were no concept of services in Kubernetes, it would be much more difficult to manage communication between different parts of a distributed application running on a Kubernetes cluster. Services are an abs...Apr 16, 2023·9 min read·22