Neo4j-helm apoc configurations issue

Hi,

I have followed the steps on how to setup a standalone neo4j instance in a kubernetes cluster from this documentation: Quickstart: Deploy a standalone instance - Operations Manual

Everything went well, however i would like to use the apoc import and export features from neo4j but when i try to do so in neo4j browser, it says export or import are not enabled. However, when i exec into the pod, i can see the configurations in the neo4j.conf file.

Here is my helm config yaml file content:

neo4j:
resources:
cpu: "1"
memory: "500Mi"
password: "*********************************"
edition: "enterprise"
acceptLicenseAgreement: "yes"

volumes:
data:
mode: "volume"
volume:
azureDisk:
diskName: "myDiskName"
diskURI: "myDiskURI"
kind: Managed

import:
mode: "volume"
volume:
azureFile:
secretName: mySecretName
shareName: myShareName
readOnly: false

config:
dbms.directories.plugins: "/var/lib/neo4j/labs"
dbms.security.procedures.unrestricted: "apoc.*"

env: {
NEO4J_apoc_import_file_enabled: "true",
NEO4J_apoc_export_file_enabled: "true",
NEO4J_apoc_import_file_use__neo4j__config: "true",
NEO4J_dbms_security_procedures_unrestricted: "apoc.*"
}

Can someone help me achieve what i am looking for?

I think this is the same as the GitHub issue on the repo here; comment posted there in follow-up.