- Why shouldn't we manage our own Kubernetes cluster?
Since Kubernetes is an abstraction layer, it is more convenient to have a cloud provider take care of maintenance and management, as well as security best practices. It's also quite cheap to delegate clusters to an existing commercial cloud provider.
- Can you name some commercial cloud providers that have a managed Kubernetes solution?
Amazon Web Services, Google Cloud Services, Microsoft Azure, Digital Ocean, and IBM Cloud are all commercial cloud providers that have a managed Kubernetes solution.
- What action do you need to perform to be able to push to an AWS Docker registry?
You need to log in to your Docker daemon. You can obtain the login command by using the following code:
$ aws ecr get-login --no-include-email
- What tool do we use to set up an EKS cluster?
eksctl allows us to create the whole...