When trying to create an app:
rhc --debug app create mezzgit python-2.7 --from-code https://radeksvarz@bitbucket.org/radeksvarz/mezzanineopenshift.git
The app is not created and I get:
...
DEBUG: code 422 270080 ms
The initial build for the application failed: Shell command '/sbin/runuser -s
/bin/sh 53c31a3ae0b8cd298e0009c0 -c "exec /usr/bin/runcon
'unconfined_u:system_r:openshift_t:s0:c2,c490' /bin/sh -c \"gear postreceive
--init >> /tmp/initial-build.log 2>&1\""' exceeded timeout of 232
...
However this works:
rhc app create mezzgit python-2.7
cd mezzgit
del *
git remote add mezzanineopenshift -m master git@bitbucket.org:radeksvarz/mezzanineopenshift.git
git pull -s recursive -X theirs mezzanineopenshift master
git add -A
git commit -m "initial mezzanine deploy"
git push origin
Why is there an error in the first case?