Introduction: Self-managed CaaS
Get an introduction to Knative and the concept of self-managed CaaS.
We'll cover the following...
Overview
We’ve already explored a few Containers as a Service solutions. We saw the pros and cons of using AWS ECS with Fargate, Azure Container Instances, and Google Cloud Run. All those solutions were managed CaaS. They’re provided and managed by other vendors. When using them, we don’t need to think about the underlying infrastructure, services, plumbing, scaling, and other things not directly related to developing applications. By using managed CaaS, we’re externalizing most of the work required for the successful deployment and management of our applications.
However, managed solutions aren’t always the best path forward. There are cases when using a service is not enough. Sometimes we ...