6.6 Kubernetesネームスペースの作成
Oracle Identity Governance (OIG)のKubernetesオブジェクトを格納するネームスペースを作成する必要があります。
- 次のコマンドを実行して、OIGデプロイメントのKubernetesネームスペースを作成します:
例:kubectl create namespace <namespace>
出力は次のようになります:kubectl create namespace oignsnamespace/oigns created - 次のコマンドを実行して、ネームスペースにタグ付けし、WebLogic Kubernetes Operatorで管理できるようにします:
例:kubectl label namespaces <domain_namespace> weblogic-operator=enabled
出力は次のようになります:kubectl label namespaces oigns weblogic-operator=enablednamespace/oigns labeled - 次のコマンドを実行して、ラベルが作成されたことを確認します:
例:kubectl describe namespace <domain_namespace>
出力は次のようになります:kubectl describe namespace oignsName: oigns Labels: kubernetes.io/metadata.name=oigns weblogic-operator=enabled Annotations: <none> Status: Active No resource quota. No LimitRange resource.