• / company
    • about us
      • / about us

        The partner of choice for data & product engineering to drive business growth & deliver an impact within your organization
    • product engineering
      • / product engineering
        We specialize in Software Product Engineering, transforming your concepts into impactful products.
    • technology
      • / technology
        250+ specialists skilled in software, BI, integration, offering end-to-end services from research to ongoing maintenance.
    • methodology
      • / methodology
        We specialize in software product engineering, transforming your concepts into impactful products.
    • careers
      • / careers
        Our team needs one more awesome person, like you. Let’s grow together! Why not give it a try?
    • do good
      • / do good
        We’re a team devoted to making the world better with small acts. We get involved and always stand for kindness.
    • events
      • / events
        Coming soon. Stay tuned!
    • blog
      • / blog
        AI in Banking 2026: How Tier-1 Banks Are Scaling Agentic AI
        The State of Modern AI in Banking 2026: What DACH Leaders Need to Do Now
    • contact us
      • / contact us
        We would love to hear from you! We have offices and teams in Romania and Switzerland. How can we make your business thrive?
  • / get in touch

Java-Powered Retail Revolution: How Java is Transforming the Future of Shopping

Java powered retail revolution

Welcome to the future of retail! As a team that specializes in software product engineering, at mindit.io we know firsthand the power technology has to completely transform and reshape industries. And in the world of retail, which is one of our main areas of expertise, there is perhaps no technology more powerful than Java. Java […]

Kubernetes 101 – ConfigMap & Secrets

Kubernetes ConfigMap vs Secrets

ConfigMap A ConfigMap is used to store non-confidential data in key-value pairs. They allow decoupling of environment-specific configuration from container images, so that the applications are easily portable. Pods can consume ConfigMaps as environment variables, command-line arguments, or as configuration files in a volume. Definition: apiVersion: v1 kind: ConfigMap metadata: name: database-config data: user: dev-user […]

Kubernetes 101 – Volumes

Kubernetes 101 volumes

Introduction Q:What is a Volume A: A directory with data accessible to all containers in a pod. Kubernetes supports many types of volumes. Persistent Volumes Ephemeral Volumes Projected Volumes etc. A pod can use any number of volume types simultaneously. Persistent Volume (PV) This is a storage element in a cluster, defined manually by an […]

Kubernetes 101 – Jobs & Cronjobs

Kubernetes 101 Jobs CronJobs

ob A Job creates one or more Pods and will continue to retry execution of the Pods until a specified number of them successfully terminate. apiVersion: batch/v1 kind: Job metadata: name: job spec: template: containers: – name: nginx image: nginx:latest command: [”/bin/sh”, “-c”, “date;”] backoffLimit: 4 As pods successfully complete, the Job tracks the successful […]

Storyblok – What is it and how can it help your business?

Storyblok what is it and how can it help your business

What is Storyblok? According to the official documentation, Storyblok is an enterprise-level Headless Content Management System that empowers content creators and developers to build anything and publish everywhere, giving them the flexibility to create and scale better experiences across all digital channels with any technology stack. Now, Storyblok is very far from the first to […]

Kubernetes 101 – Deployments

Kubernetes 101 deployments

Intro While you can’t rely on any single pod to stay running indefinitely, you can rely on the fact that the cluster will always try to have the number of pods you wanted available. A Deployment object contains a collection of pods defined by a template and a replica count (how many copies of the […]

Kubernetes 101 – Namespaces

Kubernetes 101 namespaces

Intro Before jumping into Kubernetes resources, let’s take a look over a very important concept called Namespace. Namespaces are a way to separate cluster resources. Namespace-based scoping is applicable only for certain types of objects (e.g. Pods Deployments, Services, etc.) and not for cluster-wide objects (e.g. StorageClass, Nodes, PersistentVolumes, etc.). Usage Retrieve all defined namespaces. […]

Docker Containers – mindit.io’s Kubernetes 101 Blog Series

Docker containers Kubernetes 101

If you’re new to our Kubernetes 101 series, you can start by reading the first blog post, right here. ‍Intro The usual way of developing an application is writing code locally, then deploying that code on a server. Any differences between environments (permissions, database access, etc.) may lead to errors. With containers, we can create […]

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

Kubernetes 101 intro 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 […]