Skip to content

Commit ae82942

Browse files
committed
Update container terminology in CLI Reference guide
1 parent 13d2815 commit ae82942

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

cli_reference/admin_cli_operations.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ $ oadm ipfailover <ipfailover_config>
9797
----
9898

9999
=== registry
100-
Installs an integrated Docker registry:
100+
Installs an integrated container registry:
101101
----
102102
$ oadm registry
103103
----
@@ -111,7 +111,7 @@ ifdef::openshift-enterprise,openshift-origin,openshift-dedicated[]
111111
=== build-chain
112112
Outputs the inputs and dependencies of any builds:
113113
----
114-
$ oadm build-chain <image-stream>[:<tag>]
114+
$ oadm build-chain <image_stream>[:<tag>]
115115
----
116116
endif::[]
117117

cli_reference/basic_cli_operations.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ $ oc rollback <deployment_name>
357357

358358
=== new-build
359359
Create a build configuration based on the source code in the current Git
360-
repository (with a public remote) and a Docker image:
360+
repository (with a public remote) and a container image:
361361
----
362362
$ oc new-build .
363363
----
@@ -385,9 +385,9 @@ $ oc cancel-build bc/<buildconfig_name> --state=<state>
385385
Example values for `*state*` are *new* or *pending*.
386386

387387
=== import-image
388-
Import tag and image information from an external Docker image repository:
388+
Import tag and image information from an external image repository:
389389
----
390-
$ oc import-image <imagestream>
390+
$ oc import-image <image_stream>
391391
----
392392

393393
=== scale
@@ -400,7 +400,7 @@ $ oc scale <object_type> <object_name> --replicas=<#_of_replicas>
400400
----
401401

402402
=== tag
403-
Take an existing tag or image from an image stream, or a Docker image pull spec,
403+
Take an existing tag or image from an image stream, or a container image "pull spec",
404404
and set it as the most recent image for a tag in one or more other image
405405
streams:
406406
----

cli_reference/cli_by_example_content.adoc

+13-13
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
6060
[options="nowrap"]
6161
----
62-
// Create an application based on the source code in the current git repository (with a public remote) and a Docker image
62+
// Create an application based on the source code in the current git repository (with a public remote) and a container image
6363
$ oc new-app . --docker-image=repo/langimage
6464
6565
// Create a Ruby application based on the provided [image]~[source code] combination
@@ -79,7 +79,7 @@
7979
8080
// Create an application from a remote repository and specify a context directory
8181
$ oc new-app https://github.com/youruser/yourgitrepo --context-dir=src/build
82-
82+
8383
// Create an application based on a template file, explicitly setting a parameter value
8484
$ oc new-app --file=./example/myapp/template.json --param=MYSQL_USER=admin
8585
----
@@ -210,7 +210,7 @@
210210
211211
[options="nowrap"]
212212
----
213-
// Create a build config based on the source code in the current git repository (with a public remote) and a Docker image
213+
// Create a build config based on the source code in the current git repository (with a public remote) and a container image
214214
$ oc new-build . --docker-image=repo/langimage
215215
216216
// Create a NodeJS build config based on the provided [image]~[source code] combination
@@ -240,7 +240,7 @@
240240
====
241241

242242

243-
== Imports images from a Docker registry
243+
== Imports images from a container registry
244244

245245
====
246246
@@ -278,7 +278,7 @@
278278
// Tag a specific image.
279279
$ oc tag openshift/ruby@sha256:6b646fa6bf5e5e4c7fa41056c27910e679c03ebe7f93e361e6515a9da7e258cc yourproject/ruby:tip
280280
281-
// Tag an external Docker image.
281+
// Tag an external container image.
282282
$ oc tag --source=docker openshift/origin:latest yourproject/ruby:tip
283283
284284
// Remove the specified spec tag from an image stream.
@@ -406,7 +406,7 @@
406406
// Remove all volumes for pod 'p1'
407407
$ oc volume pod/p1 --remove --confirm
408408
409-
// Remove volume 'v1' from deployment config 'registry'
409+
// Remove volume 'v1' from deployment config 'registry'
410410
$ oc volume dc/registry --remove --name=v1
411411
412412
// Unmount volume v1 from container c1 on pod p1 and remove the volume v1 if it is not referenced by any containers on pod p1
@@ -731,10 +731,10 @@
731731
----
732732
// Show Merged kubeconfig settings.
733733
$ oc config view
734-
734+
735735
// Show only local kubeconfig settings
736736
$ oc config view --local
737-
737+
738738
// Get the password for the e2e user
739739
$ oc config view -o template --template='{{range .users}}{{ if eq .name "e2e" }}{{ index .user.password }}{{end}}{{end}}'
740740
----
@@ -749,10 +749,10 @@
749749
----
750750
// Set only the server field on the e2e cluster entry without touching other values.
751751
$ oc config set-cluster e2e --server=https://1.2.3.4
752-
752+
753753
// Embed certificate authority data for the e2e cluster entry
754754
$ oc config set-cluster e2e --certificate-authority=~/.kube/e2e/kubernetes.ca.crt
755-
755+
756756
// Disable cert checking for the dev cluster entry
757757
$ oc config set-cluster e2e --insecure-skip-tls-verify=true
758758
----
@@ -768,10 +768,10 @@
768768
// Set only the "client-key" field on the "cluster-admin"
769769
// entry, without touching other values:
770770
$ oc config set-credentials cluster-admin --client-key=~/.kube/admin.key
771-
771+
772772
// Set basic auth for the "cluster-admin" entry
773773
$ oc config set-credentials cluster-admin --username=admin --password=uXFGweU9l35qcif
774-
774+
775775
// Embed client certificate data in the "cluster-admin" entry
776776
$ oc config set-credentials cluster-admin --client-certificate=~/.kube/admin.crt --embed-certs=true
777777
----
@@ -798,7 +798,7 @@
798798
----
799799
// Change the config context to use
800800
oc config use-context my-context
801-
801+
802802
// Set the value of a config preference
803803
oc config set preferences.some true
804804
----

0 commit comments

Comments
 (0)