Configuring Shared Drive
Creating Persistent Volume Claim for shared drive
After installing Detect services, create and configure a shared drive in kubernetes. There are two ways to create Persistent Volume Claim (PVC) in the kubernetes either using YAML file or through UI console.
In the Kubernetes UI console, click Create PersistentVolumeClaim, enter
required parameters to create a PVC and create the PVC as shown in the below
screenshot. 
kubectl apply -f sample_pvc.yamlConfiguring Mount Points
To configure PVC for mounting data to the pod, create and configure the sample-pod-to-copy-appsrc-n-instancehome.yaml file.
Now, copy the acme and instance_home zip files to this the /data folder using the kubectl command.
Kubectl cp <acme zip file> <pod-name>:/data/
After the files are copied, rename the acme folder to the appsrc folder, and delete all the folders in the appsrc/lib path.
unzip acme.zip
mv acme appsrc
cd appsrc/lib
rm -rf *
chmod -R 764 appsrc instance_home