|
|
|
|
|
by gouggoug
1858 days ago
|
|
> How does Kubernetes not also result in the same? Here's the difference between kubernetes and ansible (and alikes) (and I'm over-simplifying a bit of course, but the idea is there) * With kubernetes, you write down the state you want your infrastructure to be in, and k8s figures out how to get there * With ansible, you write down how to get to the state you want and ansible runs those steps, and hopefully they end up in the same state. The issue is that if you run the same set of steps on a Debian linux distribution, and on a Ubuntu distribution, well, they might end up in a similar state, but they actually aren't; for starters: one is debian, the other is unbuntu. |
|
But this is not perfect, because it's easy to eventually end up with imperative commands, like "run this script", or "Copy this file".