Unable to install plugin from GitHub URL

I am unable to install Kibana plugin behind proxy (from URL)

The URL is being treated as a package name, which in turn generate artifacts.elastic.co URL and the process fails to download the file.

Kibana Version: 6.3.2.
Kibana Image Repository: docker.elastic.co/kibana/kibana

Logs:

bash-4.2$ bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.29/logtrail-6.3.2-0.1.29.zip
Found previous install attempt. Deleting...
Attempting to transfer from https://github.com/sivasamyk/logtrail/releases/download/v0.1.29/logtrail-6.3.2-0.1.29.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Attempting to transfer from https://artifacts.elastic.co/downloads/kibana-plugins/https://github.com/sivasamyk/logtrail/releases/download/v0.1.29/logtrail-6.3.2-0.1.29.zip/https://github.com/sivasamyk/logtrail/releases/download/v0.1.29/logtrail-6.3.2-0.1.29.zip-6.3.2.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Plugin installation was unsuccessful due to error "No valid url specified."


bash-4.2$ bin/kibana-plugin install https://github.com/johtani/analyze-api-ui-plugin/releases/download/6.3.2/analyze-api-ui-plugin-6.3.2.zip
Attempting to transfer from https://github.com/johtani/analyze-api-ui-plugin/releases/download/6.3.2/analyze-api-ui-plugin-6.3.2.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Attempting to transfer from https://artifacts.elastic.co/downloads/kibana-plugins/https://github.com/johtani/analyze-api-ui-plugin/releases/download/6.3.2/analyze-api-ui-plugin-6.3.2.zip/https://github.com/johtani/analyze-api-ui-plugin/releases/download/6.3.2/analyze-api-ui-plugin-6.3.2.zip-6.3.2.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Plugin installation was unsuccessful due to error "No valid url specified."

bash-4.2$ bin/kibana-plugin install http://github.com/sirensolutions/sentinl/releases/download/tag-6.3.2-beta-1/sentinl-v6.3.2.zip                                                               
Attempting to transfer from http://github.com/sirensolutions/sentinl/releases/download/tag-6.3.2-beta-1/sentinl-v6.3.2.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Attempting to transfer from https://artifacts.elastic.co/downloads/kibana-plugins/http://github.com/sirensolutions/sentinl/releases/download/tag-6.3.2-beta-1/sentinl-v6.3.2.zip/http://github.com/sirensolutions/sentinl/releases/download/tag-6.3.2-beta-1/sentinl-v6.3.2.zip-6.3.2.zip
Picked up proxy http://proxy.mydomain.com:3128/ from environment variable.
Plugin installation was unsuccessful due to error "No valid url specified."

Am I doing something wrong with the install command? Or it looks like a bug in 6.3.2 version?

Kibana creates a list of urls to try, and goes down the list as failures happen. In this case it is trying the GitHub release first and getting an error.

Can we try downloading the release manually (maybe using curl with the proxy flag) to validate that the proxy can fetch the release? If that does work we can temporarily install using file:/// while we figure out a fix on the Kibana side.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.