OUR NEWSBlog

How DevOps Service Providers can drive Digital Transformation

How DevOps Service Providers can drive Digital Transformation
devops service providers

Transformation is the key to success to any company in the business landscape today and DevOps Service Providers like CodeRise Technologies  can really help you improve and transform yourself in a way that allows you to progress.  In today’s dynamic work environment, you simply cannot afford to be inconsistent and risk becoming outdated or falling behind...

How Kubernetes establishes communication between Pods

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

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...

Container Orchestration Platforms to Know

Container Orchestration Platforms to Know

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...

Running BitCoin Core in Kubernetes (Azure Container Service) cluster

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

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: Deploying Kubernetes Cluster locally
Minikube Image

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....