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