Create administrative boundaries between resources using namespaces

kubernetes

Classification:

compliance

Framework:

cis-kubernetes

Control:

5.7.1

Set up the kubernetes integration.

Description

Use namespaces to isolate your Kubernetes objects.

Rationale

Limiting the scope of user permissions can reduce the impact of mistakes or malicious activities. A Kubernetes namespace allows you to partition created resources into logically named groups. Resources created in one namespace can be hidden from other namespaces. By default, each resource created by a user in Kubernetes cluster runs in a default namespace, called default. You can create additional namespaces and attach resources and users to them. You can use Kubernetes Authorization plugins to create policies that segregate access to namespace resources between different users.

Audit

Run the following command and review the namespaces created in the cluster: kubectl get namespaces

Ensure that these namespaces are the ones you need and are adequately administered as per your requirements.

Remediation

Follow the documentation and create namespaces for objects in your deployment as you need them.

Impact

You need to switch between namespaces for administration.

Default value

By default, Kubernetes starts with two initial namespaces:

  1. default - The default namespace for objects with no other namespace
  2. kube-system - The namespace for objects created by the Kubernetes system

References

  1. https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
  2. http://blog.kubernetes.io/2016/08/security-best-practices-kubernetes-deployment.html

CIS controls

Version 6.14 Controlled Access Based on the Need to Know