Ensure Container-Optimized OS (cos_containerd) is used for GKE node images

LOW

Description

Description:

Use Container-Optimized OS (cos_containerd) as a managed, optimized and hardened base OS that limits the host's attack surface.

Rationale:

COS is an operating system image for Compute Engine VMs optimized for running containers. With COS, you can bring up your containers on Google Cloud Platform quickly, efficiently, and securely.

Using COS as the node image provides the following benefits:

  • Run containers out of the box: COS instances come pre-installed with the container runtime and 'cloud-init'. With a COS instance, you can bring up your container at the same time you create your VM, with no on-host setup required.
  • Smaller attack surface: COS has a smaller footprint, reducing your instance's potential attack surface.
  • Locked-down by default: COS instances include a locked-down firewall and other security settings by default.

If modifying an existing cluster's Node pool to run COS, the upgrade operation used is long-running and will block other operations on the cluster (including delete) until it has run to completion.

COS nodes also provide an option with 'containerd' as the main container runtime directly integrated with Kubernetes instead of 'docker'. Thus, on these nodes, Docker cannot view or access containers or images managed by Kubernetes. Your applications should not interact with Docker directly. For general troubleshooting or debugging, use crictl instead.

Remediation

Using Google Cloud Console

  1. Go to Kubernetes Engine by visiting https://console.cloud.google.com/kubernetes/list
  2. Select the Kubernetes cluster which does not use COS
  3. Under the Node pools heading, select the Node Pool that requires alteration
  4. Click EDIT
  5. Under the Image Type heading click CHANGE
  6. From the pop-up menu select Container-Optimized OS (cos_containerd) and click CHANGE
  7. Repeat for all non-compliant Node pools.

Using Command Line

To set the node image to 'cos' for an existing cluster's Node pool:

gcloud container clusters upgrade [CLUSTER_NAME]
--image-type cos_containerd
--zone [COMPUTE_ZONE] --node-pool [POOL_NAME]