Create administrative boundaries between resources using namespaces (Manual)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-eks-v160-4.5.1 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Eks V160 4.5.1?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-eks-v160-4-5-1)More formats (shields.io, HTML) on the badges page.
---
name: cis-eks-v160-4.5.1
description: "Create administrative boundaries between resources using namespaces (Manual)"
category: cis-eks
version: "1.6.0"
author: cyberstrike-official
tags: [cis, eks, kubernetes, aws, general-policies, namespaces, resource-isolation, multi-tenancy]
cis_id: "4.5.1"
cis_benchmark: "CIS Amazon Elastic Kubernetes Service (EKS) Benchmark v1.6.0"
tech_stack: [kubernetes, aws, eks]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.5.1 Create administrative boundaries between resources using namespaces (Manual)
## Profile Applicability
- Level 1
## 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 an Amazon EKS 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.
## Impact
You need to switch between namespaces for administration.
## Audit Procedure
Run the below command and review the namespaces created in the cluster.
```bash
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.
## Default Value
By default, Kubernetes starts with four 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
3. `kube-public` - The namespace for public-readable ConfigMap
4. `kube-node-lease` - The namespace for associated lease object for each node
## 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
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8 | 12.8 Establish and Maintain Dedicated Computing Resources for All Administrative Work | | | x |
| v7 | 12.1 Maintain an Inventory of Network Boundaries | x | x | x |

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!