odoo-hosting icon indicating copy to clipboard operation
odoo-hosting copied to clipboard

Trying to make Odoo on Clouder 0.9.0 work

Open thomaspaulb opened this issue 8 years ago • 4 comments

Have been able to install the "salt master" and "salt minion" containers, but when I try to install any other, for example a Postgresql container, I am getting this error:

2017-02-11 18:05:43 : command : docker exec sfit-salt-exec bash -c  "salt sfit.mydomain.tla state.apply container_purge pillar=\"{'container_name': 'sfit-psql-data'}\" "
2017-02-11 18:05:45 : stdout : No minions matched the target. No command was sent, no jid was assigned.

And I don't see the associated images or containers on my server anywhere. What should I do?

thomaspaulb avatar Feb 11 '17 18:02 thomaspaulb

Hello thomas,

As this point, I think it's better to look at the master branch now, and use the oneclick http://clouder.readthedocs.io/en/latest/getting-started.html

We'll drop the salt use for now, it's too complicated to jump in and, like the error you had, sometimes minions have trouble to contact salt master.

Let us know if you manage to make the master branch working for you.

YannickB avatar Feb 11 '17 19:02 YannickB

On odoo 10 only right?

Op 11 feb. 2017 20:35 schreef "Yannick Buron" [email protected]:

Hello thomas,

As this point, I think it's better to look at the master branch now, and use the oneclick http://clouder.readthedocs.io/ en/latest/getting-started.html

We'll drop the salt use for now, it's too complicated to jump in and, like the error you had, sometimes minions have trouble to contact salt master.

Let us know if you manage to make the master branch working for you.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/clouder-community/clouder/issues/214#issuecomment-279170115, or mute the thread https://github.com/notifications/unsubscribe-auth/ABZf9BDlUh23orPsRx1GSeusiFPzN8Fhks5rbg2VgaJpZM4L-QoG .

thomaspaulb avatar Feb 11 '17 20:02 thomaspaulb

My dev environment is Clouder on Odoo9, deploying Odoo10. Shall work on Clouder on Odoo 10 though.

YannickB avatar Feb 11 '17 20:02 YannickB

The modules of master branch are not visible in Odoo 9.0 because of missing openerp.py file. So I had to run the following command to rename all the manifest files back to the old name.

for x in $(find . -name __manifest__.py); do mv $x $(echo "$x" | sed 's/__manifest__/__openerp__/'); done

renzo1974 avatar Mar 06 '17 17:03 renzo1974