Configuring the Decision Center Business console

You can configure the Decision Center Business console to use your customized dynamic domains, custom value editors, or custom ruleset extractors.

About this task

Before you install an Operational Decision Manager Helm release, you must create a persistent volume claim (PVC) that is dedicated to the storage of the Decision Center Business console custom libraries.

Procedure

  1. Create a YAML file, for example, custom-dc-libs-pvc.yaml.

    The following example defines a PVC that is named custom-dc-libs-pvc.

    kind: PersistentVolumeClaim
    apiVersion: v1
    metadata:  
      name: custom-dc-libs-pvc
    spec:
      accessModes:    
        - ReadWriteOnce  
      resources:    
        requests:      
          storage: 1Gi

    Do not forget to size the storage of the PVC, which is based on the size of the custom libraries.

  2. Use the following command to create the PVC.
    kubectl create -f custom-dc-libs-pvc.yaml
  3. Check that the PVC is installed.

    The following command shows the bound persistent volume (PV) of all the PVCs.

    kubectl get pvc

    The following command verifies that the PVC is bound to a PV by showing the description of the PV and its claim.

    kubectl describe pv <pv_name>

What to do next

To complete the customization of Decision Center, follow the instructions in Customizing the Decision Center Business console after you install a Helm release of ODM for production.