How can I install Odoo v11 on Openshift Online using the Docker Image of Odoo v11.
In Openshift: I created a project called myodoo.
What I did was to create a persistent postgresql storage with the following parameters in the web console:
Memory Limit: 512Mi
Namespace: openshift
Database Service Name: postgresql
PostgreSQL Connection Username: odoo
PostgreSQL Connection Password: odoo
PostgreSQL Database Name: db
Volume Capacity: 1Gi
Version of PostgreSQL Image: 9.6
Labels: template postgresql-persistent-template app postgresql-persistent
and then I used this docker image as described here via the deploy image tag https://hub.docker.com/_/odoo/
and for the Environment Variables of image odoo I have entered in Openshift:
HOST db
PORT 5432
USER odoo
PASSWORD odoo
Labels app odoo
but it fails:
Name Status Containers Ready Container Restarts Age
odoo-1-mdxnn Crash Loop Back-off0/1 7 14 minutes
postgresql-1-gfs4d Running 1/1 0 21 minutes
What is wrong there?
Is it missing pods?
Why is there Crash Loop Back?
Does it miss routes? If yes how does that work? Please be aware that I need to install v11 and therefore the quickstarts on github do not work.
I am testing for a payable version of Openshift Online with the free tier to afterwards deploy on a full thing with bigger size.