> ## Documentation Index
> Fetch the complete documentation index at: https://cloudanix.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# The Default Namespace Should Not Used

### More Info:

Kubernetes provides a default namespace, where objects are placed if no namespace is specified for them. Placing objects in this namespace makes application of RBAC and other controls more difficult.

### Risk Level

Low

### Address

Security

### Compliance Standards

* CIS Kubernetes

### Triage and Remediation

<Tabs>
  <Tab title="Remediation">
    ### Remediation

    <AccordionGroup>
      <Accordion title="Using Console" defaultOpen="true">
        Run this command to list objects in default namespacekubectl get \$(kubectl api-resources --verbs=list --namespaced=true -o name |paste -sd, -) --ignore-not-found -n defaultThe only entries there should be system managed resources such as the kubernetesservice
      </Accordion>
    </AccordionGroup>
  </Tab>
</Tabs>
