cluster-start fails on linux (fedora)
See original GitHub issueHaving the following plugin configuration:
<plugin> <groupId>io.fabric8</groupId> <artifactId>fabric8-maven-plugin</artifactId> <version>3.1.58</version> <executions> <execution> <id>fmp</id> <goals> <goal>resource</goal> <goal>helm</goal> <goal>build</goal> </goals> </execution> </executions> </plugin>
and issuing mvn fabric8:cluster-start, generates the following error:
…
[INFO] — fabric8-maven-plugin:3.1.58:cluster-start (default-cli) @ kubernetes-fabric8 —
[INFO] F8> Downloading version 0.4.77 of gofabric8 to /home/sterpico/.fabric8/bin/gofabric8
…
[ERROR] Failed to execute goal io.fabric8:fabric8-maven-plugin:3.1.58:cluster-start (default-cli) on project kubernetes-fabric8:
Failed to open URL: https://github.com/fabric8io/gofabric8/releases/download/v0.4.77/gofabric8-linux-amd64. java.io.FileNotFoundException:
https://github.com/fabric8io/gofabric8/releases/download/v0.4.77/gofabric8-linux-amd64 -> [Help 1]
I manually installed gofabric8 version 0.4.76 (latest at the time of writing), however the plugin always attempts to resolve this version instead. The issue could be similar to the windows one, however is there a way to instruct it to work with this gofabric8 version?
Issue Analytics
- State:
- Created 7 years ago
- Comments:6 (3 by maintainers)
Top GitHub Comments
This should be fixed now that 0.4.77 of gofabric8 is released. I’ll open a new issue to discuss how the plugin is doing the latest version check.
Didn’t know that was how the version was discovered… We’ll change that soon.
On Mon, 3 Oct 2016, 18:39 Jimmi Dyson, jimmidyson@gmail.com wrote: