Skip to content

Commit

Permalink
Follow-up style edits to PR#3304
Browse files Browse the repository at this point in the history
  • Loading branch information
ahardin-rh committed Dec 19, 2016
1 parent 5b23a4c commit 9d8634b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions dev_guide/application_lifecycle/new_app.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -308,25 +308,25 @@ input: source repositories, images, or templates.

|Object |Description

a|`*BuildConfig*`
a|A `*BuildConfig*` is created for each source repository specified in the
command line. The `*BuildConfig*` specifies the strategy to use, the source
a|`BuildConfig`
a|A `BuildConfig` is created for each source repository specified in the
command line. The `BuildConfig` specifies the strategy to use, the source
location, and the build output location.

a|`*ImageStreams*`
a|For `*BuildConfig*`, two `*ImageStreams*` are usually created: one to
represent the input image (the builder image in the case of `*Source*` builds or
*FROM* image in case of `*Docker*` builds), and another one to represent the
a|`ImageStreams`
a|For `BuildConfig`, two `ImageStreams` are usually created: one to
represent the input image (the builder image in the case of `Source` builds or
*FROM* image in case of `Docker` builds), and another one to represent the
output image. If a container image was specified as input to `new-app`, then an
image stream is created for that image as well.

a|`*DeploymentConfig*`
a|A `*DeploymentConfig*` is created either to deploy the output of a build, or a
a|`DeploymentConfig`
a|A `DeploymentConfig` is created either to deploy the output of a build, or a
specified image. The `new-app` command creates xref:../volumes.adoc#dev-guide-volumes[*EmptyDir*
volumes] for all Docker volumes that are specified in containers included in the
resulting `*DeploymentConfig*`.
resulting `DeploymentConfig`.

a|`*Service*`
a|`Service`
a|The `new-app` command attempts to detect exposed ports in input images. It
uses the lowest numeric exposed port to generate a service that exposes that
port. In order to expose a different port, after `new-app` has completed, simply
Expand Down Expand Up @@ -372,7 +372,7 @@ $ cat postgresql.env | oc new-app openshift/postgresql-92-centos7 --env-file=-

[NOTE]
====
Any `*BuildConfig*` objects created as part of `new-app` processing will not be updated with
Any `BuildConfig` objects created as part of `new-app` processing will not be updated with
environment variables passed via the `-e|--env` or `--env-file` argument.
====

Expand Down Expand Up @@ -540,7 +540,7 @@ spec:
supports: "ruby:2.0,ruby"
version: "2.0"
----
<1> Including *builder* here ensures this `*ImageStreamTag*` appears in the
<1> Including *builder* here ensures this `ImageStreamTag` appears in the
web console as a builder.
====

Expand Down

0 comments on commit 9d8634b

Please sign in to comment.