---
title: Namespace
description: "Create a namespace in the shared cluster. Namespaces let you isolate your deployments from other developers' deployments."
component: forgeops
version: 7.4
page_id: forgeops::cdk/cloud/setup/eks/namespace
canonical_url: https://docs.pingidentity.com/forgeops/7.4/cdk/cloud/setup/eks/namespace.html
keywords: ["Kubernetes Namespace"]
section_ids:
  next_step: Next step
---

# Namespace

Create a namespace in the shared cluster. Namespaces let you isolate your deployments from other developers' deployments.

ForgeRock recommends that you deploy the Ping Identity Platform in a namespace other than the `default` namespace. Deploying to a non-default namespace lets you separate workloads in a cluster. Separating a workload into a namespace lets you delete the workload easily; just delete the namespace.

To create a namespace:

1. Create a namespace in your Kubernetes cluster:

   ```
   $ kubectl create namespace my-namespace
   namespace/my-namespace created
   ```

2. Make the new namespace the active namespace in your local Kubernetes context. For example:

   ```
   $ kubens my-namespace
   Context "my-context" modified.
   Active namespace is "my-namespace".
   ```

## Next step

* [icon: check-square-o, set=fa][Get the forgeops repository](forgeops.html)

* [icon: check-square-o, set=fa][Install third-party software](sw.html)

* [icon: check-square-o, set=fa][Get details about the shared EKS cluster](clusterinfo.html)

* [icon: check-square-o, set=fa][Create a Kubernetes context](context.html)

* [icon: check-square-o, set=fa][Create a Kubernetes namespace](#)

* [icon: square-o, set=fa]*[Set up hostname resolution](hostname.html)*
