6.6 Creating a Kubernetes Namespace

You must create a namespace to store the Kubernetes objects for Oracle Identity Governance (OIG).
  1. Create a Kubernetes namespace for the OIG deployment by running the following command:
    kubectl create namespace <namespace>
    For example:
    kubectl create namespace oigns
    The output will look similar to the following:
    namespace/oigns created
  2. Run the following command to tag the namespace so the WebLogic Kubernetes Operator can manage it:
    kubectl label namespaces <domain_namespace> weblogic-operator=enabled
    For example:
    kubectl label namespaces oigns weblogic-operator=enabled
    The output will look similar to the following:
    namespace/oigns labeled
  3. Run the following command to check the label was created:
    kubectl describe namespace <domain_namespace>
    For example:
    kubectl describe namespace oigns
    The output will look similar to the following:
    Name:         oigns
    Labels:       kubernetes.io/metadata.name=oigns
                  weblogic-operator=enabled
    Annotations:  <none>
    Status:       Active
    
    No resource quota.
    
    No LimitRange resource.