What Services Should I Avoid Running on Kubernetes?

0
9
Asked By TechWizard42 On

I'm curious about what services are best to keep on or off a Kubernetes cluster. For instance, I'm currently using FluxCD on my K8s cluster, and I worry that running GitLab there might create a dependency loop. How do I maintain high availability for services if they're off the cluster? I want to hear your thoughts on this.

3 Answers

Answered By CloudyNights On

It's important to consider the complexity and skill set needed for what you're running. You might have everything set up perfectly, but how many people could step in to keep it running if you're unavailable? I've made the mistake of designing a system for a much larger company than we actually have, and now I'm the only one who can manage it, which is risky. It's easy to over-engineer things, but it leads to burnout since you're the go-to person all the time.

Answered By K8sPurist88 On

I personally believe that anything needing state management shouldn’t be run on Kubernetes. I see it as a best practice for maintaining simplicity and stability. That's just my opinion as an old-school K8s enthusiast.

Answered By DockerDude99 On

Kubernetes is primarily an orchestrator. Focus on what shouldn't run in containers instead. Avoid monolithic applications, anything that relies heavily on state, and processes that directly handle file or stream I/O without using APIs. Their structure doesn’t align well with the microservices model that K8s is built around.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.