How Kubernetes establishes communication between Pods

Kubernetes provides a feature called service discovery. It gives containers their own IP addresses and a single DNS name and can load-balance across them. Services are responsible for communication between pods. You can see in architecture where serviceIP is actually a key component for the service discovery. It consists of DNS mapping with Pod IP(iptables). […]

Prometheus: Setting up Monitoring and Alerting for Application

Introduction: Prometheus is the open source monitoring solution which gives powerful metrics and alerts. When to use? Time Series Data: It works well for numeric time series data. Multidimensional Data: If the organization follows Microservice architecture, Prometheus is a great tool to monitor multi-dimensional data. Machine Centric Monitoring: It is used for the machine-centric monitoring […]

Understanding the Lifecycle of a Kuberenetes Pod

ingress amazon eks cluster

What is a Pod? A pod is the deployment unit for the Kubernetes. It is also having the life cycle just like the process in Linux. Pods are mortal, i.e. they can die and be reborn. Each pod consists of a unique Id (UID) which is different for each of them. A Pod consists of […]

Container Orchestration Platforms to Know

orchestration

Container As a Service (CaaS) is growing very rapidly. Enterprises are adopting the containers and orchestration for managing containerized applications at scale. In the previous blog we also discussed the tools for the container security. Orchestration Platforms: Kubernetes [Open Source]: Kubernetes is the CNCF (Cloud Computing Native Foundation ) hosted project. It is used for automated […]

Deploying Jenkins with Helm on Kubernetes (AKS)

jenkins with helm

In our last blog, we showed how to deploy a Kubernetes cluster in Azure Container Service (AKS). In this blog, we will cover how to deploy Jenkins with Helm in a Kubernetes cluster. Helm charts helps you define, install, and upgrade complex Kubernetes applications. Jenkins Helm chart installs a master and slave cluster utilizing the Jenkins […]

Running BitCoin Core in Kubernetes (Azure Container Service) cluster

bitcoin core in kubernetes

Blockchain is a continuously growing list of records, called blocks, which are linked and secured using cryptography. The blockchain is a public ledger that records bitcoin transactions. In this blog, we will show you how to deploy and run BitCoin Core in Kubernetes. We will be using Azure Container Service (AKS), Microsoft’s managed Kubernetes service but […]

Containerized Application with Docker

Docker image

Introduction Containers are portable and atomic units of deployment which are bundled with dependencies and pre-installed with toolchain required to run the application. A container is an instances of an Image and can represent an application, web, database or other services. A container engine is used for communication between containers and underlying kernel of Operating […]

Minikube: Deploying Kubernetes Cluster locally

minikube

Minikube is a tool written in Golang to set up the kubernetes cluster locally on the machine.It will require virtualization to be enabled for Operating System. It supports Container Network Interface (CNI Plugins), Domain Name System, Kubernetes Dashboard, Ingress for load balancing, Config Maps and Secrets and Container runtime which can be docker or rkt. […]

Container security tools you should know about

container security tools

Container technologies are growing rapidly as cloud computing becomes a necessity. Containers clearly outweigh the shortcomings for most enterprises and helps them release quality code faster at reduced cost. In this blog, we will look into some of the container security tools available to secure your containers. Container Security Tools – Docker Native Docker Bench […]

Docker: A New way to Deploy the Application

container security tools

Introduction: In this post we will focus on understanding the containerization with Docker. Containerization with Docker: Deployment of an application is a tedious job. Only a single application need’s to be deployed on a single physical machine. Virtualization made its possible to deploy different applications on a single machine. Virtualization is one of the important […]