YannickB / odoo-hosting

Other
64 stars 50 forks source link

Trying to make Odoo on Clouder 0.9.0 work #214

Open thomaspaulb opened 7 years ago

thomaspaulb commented 7 years ago

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?

YannickB commented 7 years ago

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.

thomaspaulb commented 7 years ago

On odoo 10 only right?

Op 11 feb. 2017 20:35 schreef "Yannick Buron" notifications@github.com:

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 .

YannickB commented 7 years ago

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

rm-jamotion commented 7 years ago

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