-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add postgresql_clients to requirements #12
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I am still unclear how the first error happened as ome.postgresql_client
is a transitive dependency of ome.omero_server
(https://github.com/ome/ansible-role-omero-server/blob/f87ded09d57c01d60f456750722f51aa5e6a8c88/meta/main.yml#L30) and I would have expected ansible-galaxy install -r requirements.yml
to install the latest published version in the absence of a pinned requirement.
And so it did. I will have to reconsider, there are quite a few degrees of freedom to test, like ansible version, python version, and also the requirements. Unfortunately, I am having differing results with what seems to me like a repeat (it is quite hard to repeat things exactly, as there are quite a bit of commands and back and forth once you are inside the docker). |
@sbesson maybe the way forward to me would be to figure out the way to list the freshly spun up docker with CentOS7 in my ansible |
I think this was caused by not allocating enough resources to the docker. When I increased this, I can confirm a stable working OMERO server which I can connect to with insight and externally run web and CLI.
in that env. |
The OMERO.web problem is probably caused by the complete lack of any web config.
Wonder why is that. It seems to me that at least something should be configured ? |
I am a bit lost. Many of the discussions below seem unrelated to the original change which adds a role to the requirements file. Should we merge this and capture anything unsolved as issues @pwalczysko ? |
Sorry for the chaos. I am trying to go ahead with the guide mainly. |
As discussed in #11 (comment), the missing item in the
requirements.yml
when run on a clean CentOS 7 machine was causingWith this PR, this error is removed, and the playbook was run to the end successfully.
cc @sbesson