In this section, we will cover various best practices and we'll see how close Delinkcious gets to getting it right.
Hardening your Kubernetes cluster using security best practices
Securing your images
One of the top priorities is making sure that the images that you deploy to the cluster are secure. There are several good guidelines to follow here.
Always pull images
In the container spec, there is an optional key called ImagePullPolicy. The default is IfNotPresent. There are a few problems with this default, as follows:
- If you use tags such as latest (you shouldn...