Hi, We have deployed a prefect server and prefect agent using helm chart in Kubernetes environment. We are using the default Prefect image for both server and agent. We have a python dependency package that needs to be installed before the deployment. we tried specifying the dependency in EXTRA_PIP_PACKAGES env variable. but this is not being respected as we don't see any logs that it is trying to install the package when the agent spins up
extraEnvVars:
- name: EXTRA_PIP_PACKAGES
value: "minio"
Whether helm chart is not using the entryPoint.sh which ignores the EXTRA_PIP_PACKAGES variable set in values.yaml?