6.6 Creating a Kubernetes Namespace

You must create a namespace to store the Kubernetes objects for Oracle Access Management (OAM).
  1. Create a Kubernetes namespace for the OAM deployment by running the following command:
    kubectl create namespace <namespace>
    For example:
    kubectl create namespace oamns
    The output will look similar to the following:
    namespace/oamns 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 oamns weblogic-operator=enabled
    The output will look similar to the following:
    namespace/oamns labeled
  3. Run the following command to check the label was created:
    kubectl describe namespace <domain_namespace>
    For example:
    kubectl describe namespace oamns
    The output will look similar to the following:
    Name:         oamns
    Labels:       kubernetes.io/metadata.name=oamns
                  weblogic-operator=enabled
    Annotations:  <none>
    Status:       Active
    
    No resource quota.
    
    No LimitRange resource.