This merges the monitoring work back into the single quay-app
deployment.
It'd only make sense to separate monitoring if it had its whole own
deployment including images etc...
The Liveness and Readniess probes were not working because the connection to port 8443 was being rejected due to SSL cert issues. As the cert is setup for external domain name, requests to `localhost` were being rejected with `400` error code.
The modified check uses `curl` with `-k` (insecure) flag to check if the application is ready and later check if it is still live.
https://issues.redhat.com/browse/PROJQUAY-39
Signed-off-by: Tejas Parikh <tparikh@redhat.com>
Added environments for Quay container so user can provide a custom names for namespace and config secret.
Signed-off-by: Tejas Parikh <tparikh@redhat.com>