Unable to setup apt repo for opendistro in our org

Hi, I was trying to setup a Jfrog Remote artifactory repository in our organisation and were unable to do so. It looks like there is some issue with the https://d3g5vo6xdbdb9a.cloudfront.net/apt/
We have been able to setup all other kinds of external apt repos and have been using artifactory for a number of years now, so it doesn’t look like any issue with artifactory settings.
The url https://d3g5vo6xdbdb9a.cloudfront.net/apt/ if accessed via browser returns Access denied. I assume the permissions on these folders/objects should be recursively set to publicly browsable.

Note: We are able to use the repo on our machines by pointing to https://d3g5vo6xdbdb9a.cloudfront.net/apt/in source.list however not able to set remote repo in artifactory. Please fix the permissions on the repo folders.

Also a completely seperate issue : I inspected the contents of https://d3g5vo6xdbdb9a.cloudfront.net/apt/dists/stable/main/binary-amd64/Packages
and found the the Homepage link mentioned in the description of all the packages gives a 404. (https://opendistro.github.io/elasticsearch/downloads)

Thanks @apednekar. Could you please open an issue on github?

done : Opendistro apt repos have multiple issues · Issue #534 · opendistro-for-elasticsearch/opendistro-build · GitHub

Hi @apednekar we only allow users to directly retrieve the artifacts with static links.

If you want to add ODFE and all the dependencies to your artifactory, try these steps:

wget -qO - https://d3g5vo6xdbdb9a.cloudfront.net/GPG-KEY-opendistroforelasticsearch | sudo apt-key add -
echo "deb https://d3g5vo6xdbdb9a.cloudfront.net/apt stable main" | sudo tee -a   /etc/apt/sources.list.d/opendistroforelasticsearch.list
sudo apt update
mkdir debs && cd debs
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.8.0-amd64.deb
sudo apt download opendistroforelasticsearch
sudo apt download opendistro-*

You should have all the required packages for now:

elasticsearch-oss-7.8.0-amd64.deb
opendistro-alerting_1.9.0.0-1_amd64.deb
opendistro-anomaly-detection_1.9.0.0-1_amd64.deb
opendistro-anomaly-detector_1.7.0.0-1_amd64.deb
opendistro-index-management_1.9.0.0-1_amd64.deb
opendistro-job-scheduler_1.9.0.0-1_amd64.deb
opendistro-knn_1.9.0.0-1_amd64.deb
opendistro-knnlib_1.9.0.0_amd64.deb
opendistro-performance-analyzer_1.9.0.1-1_amd64.deb
opendistro-security_1.9.0.0-0_amd64.deb
opendistro-sql_1.9.0.0-1_amd64.deb
opendistroforelasticsearch_1.9.0-1_amd64.deb

Thanks.