Closed diegodelemos closed 4 years ago
Stemmed from https://github.com/reanahub/reana-cluster/pull/217#discussion_r313383234.
Currently, all parameters which have to to with how to build the REANA-Cluster templates are loaded in the cli/__init__.py, this is because the templates are rendered in this function call.
cli/__init__.py
This is the technical reason behind why we have to do:
$ reana-cluster --ui init
But we should do the following:
$ reana-cluster init --ui
Which is more natural.
More details by @tiborsimko here https://github.com/reanahub/reana/pull/226#issuecomment-562083340.
This issue won't be fixed since soon REANA-Cluster will be deprecated in favor of Helm based deployments.
Stemmed from https://github.com/reanahub/reana-cluster/pull/217#discussion_r313383234.
Currently, all parameters which have to to with how to build the REANA-Cluster templates are loaded in the
cli/__init__.py
, this is because the templates are rendered in this function call.This is the technical reason behind why we have to do:
But we should do the following:
Which is more natural.