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