Description
Is your feature request related to a problem? Please describe.
When a model repository is downloaded from a remote location there are possible references to these files that are needed to be explicitly provided. Currently the remote repository will use the TRITON_AWS_MOUNT_DIRECTORY (AWS implementation) and download the files to the location you specify, but it will then place those files in a randomly named folder with a convention similar to folderXXXXXX. Placing the files in a randomly named folder defeats the purpose of specifying an explicit directory name because it can no longer be referenced in your files.
Describe the solution you'd like
Either remove the folderXXXXXX that is created and place the files exactly in the TRITON_AWS_MOUNT_DIRECTORY or provide another environment variable for the explicit folder name to override the folderXXXXXX naming convention.
Describe alternatives you've considered
- Using the Triton server as a base container where there is an initialization process added to download the remote repository to a specific location.
- Using an init container to load to explicit location
Additional context
N/A