The oc utility allows you to deploy a simple application in a user-friendly way. Generally, you just need to pass one or more options to the oc new-app command, which will then create all required resources, including pod(s) and service(s), for your application. Additionally, that command creates ReplicationController and DeploymentConfig API objects that control how your application is being deployed.
Using oc new-app
The oc new-app command
So, oc new-app creates the following resources during application deployment from an existing Docker image:
Resource | Abbreviation | Description |
Pod | pod | Pod representing your container |
Service | svc | Service containing an internal application endpoint |
ReplicationController | rc | A replication... |