You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I'm not running the latest minikube version, I get the notification that there's a new version. However, when I try to set my environment variables, it actually fails. Funnily enough, when I run it a second time it goes through successfully.
$ eval$(reana-dev setup-environment)⚠️ minikube 1.3.1 is available! Download it: https://github.com/kubernetes/minikube/releases/tag/v/1.3.1bash: export: `notice,': not a valid identifierbash: export: `run:': not a valid identifierbash: export: `minikube config set WantUpdateNotification false192.168.39.236:30443': not a valid identifier
$ eval$(reana-dev setup-environment)
Not sure whether we could do something about it more than suggest to use latest versions.
The text was updated successfully, but these errors were encountered:
This fails because we do not do any check on the output of minikube ip in REANA-Cluster CLI, we always trust it will give an IP, which breaks setting the REANA_SERVER_URL environment variable when the output is something else (for example update warnings).
Yeah, we could check minikube ip output to be ready for more situations, however setting WantUpdateNotification to false should also solve this. Since Minikube deployments are only used by developers, it should be sufficient, as people can run update-check manually...
As I'm not running the latest
minikube
version, I get the notification that there's a new version. However, when I try to set my environment variables, it actually fails. Funnily enough, when I run it a second time it goes through successfully.Not sure whether we could do something about it more than suggest to use latest versions.
The text was updated successfully, but these errors were encountered: