July 2018
Intermediate to advanced
504 pages
11h 34m
English
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 controller is an OpenShift object that controls the number of replicas for an application |
| DeploymentConfig | dc | Deployment configuration is a definition of your deployment |
oc new-app is a very simple utility, yet it's powerful enough to satisfy most simple deployments.
The functionality provided by oc new-app is also exposed via a web console ...