|
|
|
|
|
by thinkersilver
2133 days ago
|
|
Kubernetes is becoming the lingua-franca of building infrastructure. Through CRDs and the kube api spec I can - start an single application - deploy a set of interconnected apps - define network topologies - define traffic flows - define vertical and horizontal scaling of resources And now I can define AWS resources. This creates an interesting scenario where infrastructure can be defined by the k8s API resources and not necessarily have k8s build it. For example podman starting containers off a K8S deployment spec. It's an API first approach and its great for interoperability. The only downside is managing the yaml and keeping it consistent across the interdependencies. |
|