Deploy App in openshift
Deploy App
Object | What it does |
|---|---|
| BuildConfig | Builds a Docker image inside OpenShift from our source code, and push it to OpenShift’s internal Docker registry. In this tutorial, we’re going to use the Source-to-Image (S2I) method for building an image. |
| Deployment | Deploys the image. It creates a set of Pods to run the image. (see some Deployment examples) |
| Service | This load-balances traffic across the Pods. |
| Route | Exposes the app outside the OpenShift cluster. |
Comments
Post a Comment