Kubernetes 101 – Intro. Let’s start with the basics!

As a software developer these days, you need to be curious in order to learn and improve. You need to start wandering beyond your local machine and wonder what happens to your software after you implemented that cool new feature. See what I did there? wander – wonder… Nevermind If you are working on a […]
Helping a global brand build an Ecommerce Marketplace with operations in over 150 countries

The Ecommerce sector is one of the most profitable industries today and one that has surely grown during the COVID-19 pandemic, given all the restrictions that were imposed at an international level. • Online retail sales amounted to $4.9 Trillion worldwide. Forecasts show a growth of over 50% within the next 4 years. • Last […]
Kubernetes 101 – Main Features. Let’s dig deeper into our K8s series!

Intro Moving on from the previous post from our Kubernetes 101 series, we saw what a Docker container is and how you can run it. What happens when you need to coordinate and schedule many containers? How do all the different containers talk to each other? How can we scale many container instances? This is […]
PROs and CONs of Enterprise Application Integration (EAI)

Introduction Organizations growing in size and expanding their enterprise architectures consisting of various applications or services to conduct day-to-day business will encounter certain issues during their growth process. In the end, this leads to a significant problem regarding enterprise applications and information silos because some applications are not designed to interact with each other in […]
Cloud adoption – What are the most significant advantages of cloud computing?

Introduction Cloud computing is on an ascending path offering different services over the Internet, such as hosting and delivering. Its reputation and popularity have grown because this technology removes the need to plan ahead for the whole infrastructure. It allows enterprises to start with few resources and increase the amount when needed. So, it is […]
Designing and developing an Employees Incentive System for Pharma companies

One of our partners is a pharmaceutical company with operations in 20+ European countries, and 50+ countries worldwide. With over 2000 shops internationally, they have a global impact on the pharma industry. Pharma Statistics and Industry Trends 2022 70% of surveyed pharma industry clients anticipate drug development to be the most impacted in 2022 by […]
Kubernetes 101 – Cluster Internals

Let’s dive into the inner workings of a Kubernetes cluster. The two main components of a Kubernetes cluster are: Master node – which can be replicated across multiple nodes Worker node Master Node etcd – Database used to store the entire configuration and state of the cluster. controller – Checks the current state of the […]
Why DevOps should be an integral part of your business

DevOps is considered one of the newest IT branches that can be viewed as a mix between software development and operations principles. The main reason why DevOps was created is to enable organizations to develop products faster and more efficiently. It’s about bringing your product to market in a quicker and more reliable way. We […]
How to build enterprise applications that give you complete control over the go-to-market flow

The global retail industry is one of the biggest and most profitable sectors of activity today. The numbers generated by retailers annually surpass trillions of US dollars. That’s why all the key players in this industry focus on gaining a higher market share, a larger piece of the pie. Before we dive into how mindit.io […]
Kubernetes 101 – Pods

Intro The Pod object is the fundamental building block in Kubernetes. It’s made of one or more (tightly related) containers, a shared networking layer, and shared filesystem volumes. Similar to containers, pods are meant to be ephemeral – there is no expectation that a specific pod will persist for a long lifetime. Its blueprint can […]