OCUDR Namespace Creation

In this section, you will learn to verify the existence of a required namespace in the system. If a namespace does not exist, you must create it. The steps to verify and create a namespace are as follows:

  1. Execute the following command to verify the existence of required namespace in system:

    kubectl get namespace

  2. If the required namespace does not exist, then execute the following command to create a namespace:

    kubectl create namespace <required namespace>

    For example: kubectl create namespace ocudr

Note:

This is an optional step. In case required namespace already exists, proceed with next procedures.