Closed tiborsimko closed 4 years ago
Besides having user@my.org
, I noticed that we also have admin@reana.org
used in create-admin-user.sh
. Note that this latter domain is not ours, it should be reana.io
.
In any case, for any examples, the canonical domain to use is example.org
, so john.doe@example.org
, jane.doe@example.org
, etc. And for user accounts, root@localhost
or $(whoami)@localhost
is safer.
Note: happens only for PROD-like deployments, the DEV-like deployments are fine.
Here is one useful one-line workaround to kill those pods from time to time:
$ kubectl get jobs | grep reana-system-status | awk '{print $1}' | xargs -r kubectl delete job
If people install REANA and if they don't pay attention to setting up default user properly -- see also #333 -- they will get many failed pods like:
because of:
It would be good to introduce safe defaults:
localhost
, e.g.root@localhost
instead ofuser@my.org
reana-system-status-...
pods; ideally a singleton might be enough.