Hi [~lfitzgerald],
The Dockerfile is done and it will build, setup, config all. You can create a project in OCP and a new app on it using the Dockerfile as follows. So, you are free to do this task. I mean, you don't need the operator to do it.
1. create a new project. 2. Create the PostgreSQL from the catalogue with the default values. See the config file in the project with the ENVS. 3. Create the app {code:java} $oc new-app https://github.com/aerogear/mobile-security-service --strategy=docker -e PGHOST=postgresql --name=mobile-security-service-app {code} 4. Create the service for the new-app * Ref. https://docs.openshift.com/container-platform/3.11/architecture/core_concepts/pods_and_services.html#services {code:java} oc expose deploymentconfig.apps.openshift.io/mobile-security-service-app --port=3000 {code}
5. Create a router for the api
Then, you will have the project running in OCP and you can do any implementation which requires test it on there. Also, note that you can create a new app passing a branch to test it as follows.
{code:java} $oc new-app https://github.com/aerogear/mobile-security-service#branch --strategy=docker -e PGHOST=postgresql --name=mobile-security-service-app {code} |
|