Hi prefect community,
I installed prefect agent from helm charts provided in the prefect GitHub repo. Now I wanted various python packages to be installed at the startup of the agent. So as per the documentation related to the docker image, I added EXTRA_PIP_PACKAGES environment variable in values.yaml of the helm chart. But when I check the agent pod,the dependencies are not installed.
I verified that the environment variable is correctly set inside the pod. So the EXTRA_PIP_PACKAGES settings is not working for me. From my understanding, It is because agent might be starting with commands in the helm chart and not via the entrypoint(I am not sure).
Does anyone faces the same issue? How are you installing extra packages? I tried custom images with dependency and it works. But I would like to use the environment variable approach.