Skip to content

Commit 18e233f

Browse files
author
Timothy Poitras
committed
Changed plugin to plug-in, where applicable
1 parent 1427f6c commit 18e233f

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

admin_guide/sdn_troubleshooting.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ These are the interfaces that the OpenShift SDN creates:
355355

356356
* `br0`: The OVS bridge device that containers will be attached to.
357357
OpenShift SDN also configures a set of non-subnet-specific flow rules
358-
on this bridge. (The `multitenant` plugin does this immediately; the
359-
`ovssubnet` plugin waits until the SDN master announces the creation
358+
on this bridge. (The `multitenant` plug-in does this immediately; the
359+
`ovssubnet` plug-in waits until the SDN master announces the creation
360360
of the new node subnet.)
361361
* `lbr0`: A Linux bridge device, which is configured as Docker's bridge and
362362
given the cluster subnet gateway address (eg, 10.128.x.1/23).
@@ -491,7 +491,7 @@ table=0, priority=100, ip, nw_dst=10.128.2.10 actions=output:12
491491
table=0, priority=100,arp,arp_tpa=10.128.2.10 actions=output:12
492492
....
493493

494-
The SDN networking plugin configures two entries (one for arp and one
494+
The SDN networking plug-in configures two entries (one for arp and one
495495
for ip) with `output=1` per peer endpoint (i.e. if there are five
496496
nodes, then there should be 4 * 2 rules; In the example above we have
497497
3 nodes total, so there are four entries above). It also sets up the

contributing_to_docs/tools_and_setup.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ $ asciibinder watch
119119
This utility will run in the terminal where you started it, so you should leave
120120
it running and open new terminal windows for other tasks.
121121

122-
4. In your browser, enable the LiveReload plugin in the same tab where the
122+
4. In your browser, enable the LiveReload plug-in in the same tab where the
123123
preview file is open; the icon should change color once activated. The following
124124
message will also display in your terminal window:
125125
+

rest_api/kubernetes_v1.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10285,7 +10285,7 @@ FSGroupStrategyOptions is the strategy that will dictate what fs group is used b
1028510285
=== v1.FinalizerName
1028610286
=== v1.FlexVolumeSource
1028710287
:hardbreaks:
10288-
FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.
10288+
FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plug-in. This is an alpha feature and may change in future.
1028910289

1029010290
[options="header"]
1029110291
|===
@@ -10886,11 +10886,11 @@ PersistentVolumeSpec is the specification of a persistent volume.
1088610886
|cephfs|CephFS represents a Ceph FS mount on the host that shares a pod's lifetime|false|<<v1.CephFSVolumeSource>>|
1088710887
|fc|FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.|false|<<v1.FCVolumeSource>>|
1088810888
|flocker|Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running|false|<<v1.FlockerVolumeSource>>|
10889-
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
10889+
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plug-in. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
1089010890
|azureFile|AzureFile represents an Azure File Service mount on the host and bind mount to the pod.|false|<<v1.AzureFileVolumeSource>>|
1089110891
|accessModes|AccessModes contains all ways the volume can be mounted. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#access-modes|false|<<v1.PersistentVolumeAccessMode>> array|
1089210892
|claimRef|ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#binding|false|<<v1.ObjectReference>>|
10893-
|persistentVolumeReclaimPolicy|What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recyling must be supported by the volume plugin underlying this persistent volume. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#recycling-policy|false|string|
10893+
|persistentVolumeReclaimPolicy|What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recyling must be supported by the volume plug-in underlying this persistent volume. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#recycling-policy|false|string|
1089410894
|===
1089510895

1089610896
=== v1.PersistentVolumeStatus
@@ -11342,7 +11342,7 @@ SecurityContextConstraints governs the ability to make requests that affect the
1134211342
|defaultAddCapabilities|DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capabiility in both DefaultAddCapabilities and RequiredDropCapabilities.|true|<<v1.Capability>> array|
1134311343
|requiredDropCapabilities|RequiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.|true|<<v1.Capability>> array|
1134411344
|allowedCapabilities|AllowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field maybe added at the pod author's discretion. You must not list a capability in both AllowedCapabilities and RequiredDropCapabilities.|true|<<v1.Capability>> array|
11345-
|allowHostDirVolumePlugin|AllowHostDirVolumePlugin determines if the policy allow containers to use the HostDir volume plugin|true|boolean|
11345+
|allowHostDirVolumePlugin|AllowHostDirVolumePlugin determines if the policy allow containers to use the HostDir volume plug-in|true|boolean|
1134611346
|allowHostNetwork|AllowHostNetwork determines if the policy allows the use of HostNetwork in the pod spec.|true|boolean|
1134711347
|allowHostPorts|AllowHostPorts determines if the policy allows host ports in the containers.|true|boolean|
1134811348
|allowHostPID|AllowHostPID determines if the policy allows host pid in the containers.|true|boolean|
@@ -11511,7 +11511,7 @@ Volume represents a named volume in a pod that may be accessed by any container
1151111511
|glusterfs|Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/release-1.2/examples/glusterfs/README.md|false|<<v1.GlusterfsVolumeSource>>|
1151211512
|persistentVolumeClaim|PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#persistentvolumeclaims|false|<<v1.PersistentVolumeClaimVolumeSource>>|
1151311513
|rbd|RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/release-1.2/examples/rbd/README.md|false|<<v1.RBDVolumeSource>>|
11514-
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
11514+
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plug-in. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
1151511515
|cinder|Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.2/examples/mysql-cinder-pd/README.md|false|<<v1.CinderVolumeSource>>|
1151611516
|cephfs|CephFS represents a Ceph FS mount on the host that shares a pod's lifetime|false|<<v1.CephFSVolumeSource>>|
1151711517
|flocker|Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running|false|<<v1.FlockerVolumeSource>>|

rest_api/openshift_v1.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10995,7 +10995,7 @@ Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as
1099510995
=== v1.FinalizerName
1099610996
=== v1.FlexVolumeSource
1099710997
:hardbreaks:
10998-
FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.
10998+
FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plug-in. This is an alpha feature and may change in future.
1099910999

1100011000
[options="header"]
1100111001
|===
@@ -11654,7 +11654,7 @@ NamedTagEventList relates a tag to its image history.
1165411654

1165511655
=== v1.NetNamespace
1165611656
:hardbreaks:
11657-
NetNamespace represents a segregated network namespace for an entire cluster. When a group of pods, or a project, or a group of projects get a NetNamespace assigned then the openshift-sdn's multitenant plugin ensures network layer isolation of traffic from other NetNamespaces.
11657+
NetNamespace represents a segregated network namespace for an entire cluster. When a group of pods, or a project, or a group of projects get a NetNamespace assigned then the openshift-sdn's multitenant plug-in ensures network layer isolation of traffic from other NetNamespaces.
1165811658

1165911659
[options="header"]
1166011660
|===
@@ -11668,7 +11668,7 @@ NetNamespace represents a segregated network namespace for an entire cluster. Wh
1166811668

1166911669
=== v1.NetNamespaceList
1167011670
:hardbreaks:
11671-
NetNamespaceList represents a list of NetNamespace objects. NetNamespace catpures information about a segregated network namespace for an entire cluster. When a group of pods, or a project, or a group of projects get a NetNamespace assigned then the openshift-sdn's multitenant plugin ensures network layer isolation of traffic from other NetNamespaces.
11671+
NetNamespaceList represents a list of NetNamespace objects. NetNamespace catpures information about a segregated network namespace for an entire cluster. When a group of pods, or a project, or a group of projects get a NetNamespace assigned then the openshift-sdn's multitenant plug-in ensures network layer isolation of traffic from other NetNamespaces.
1167211672

1167311673
[options="header"]
1167411674
|===
@@ -12677,7 +12677,7 @@ Volume represents a named volume in a pod that may be accessed by any container
1267712677
|glusterfs|Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/release-1.2/examples/glusterfs/README.md|false|<<v1.GlusterfsVolumeSource>>|
1267812678
|persistentVolumeClaim|PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: http://releases.k8s.io/release-1.2/docs/user-guide/persistent-volumes.md#persistentvolumeclaims|false|<<v1.PersistentVolumeClaimVolumeSource>>|
1267912679
|rbd|RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: http://releases.k8s.io/release-1.2/examples/rbd/README.md|false|<<v1.RBDVolumeSource>>|
12680-
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plugin. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
12680+
|flexVolume|FlexVolume represents a generic volume resource that is provisioned/attached using a exec based plug-in. This is an alpha feature and may change in future.|false|<<v1.FlexVolumeSource>>|
1268112681
|cinder|Cinder represents a cinder volume attached and mounted on kubelets host machine More info: http://releases.k8s.io/release-1.2/examples/mysql-cinder-pd/README.md|false|<<v1.CinderVolumeSource>>|
1268212682
|cephfs|CephFS represents a Ceph FS mount on the host that shares a pod's lifetime|false|<<v1.CephFSVolumeSource>>|
1268312683
|flocker|Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running|false|<<v1.FlockerVolumeSource>>|

using_images/other_images/jenkins.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,16 @@ To customize the official OpenShift Jenkins image, you have two options:
127127

128128
You can use link:../../architecture/core_concepts/builds_and_image_streams.html#source-build[S2I]
129129
to copy your custom Jenkins Jobs definitions, additional
130-
plugins or replace the provided *_config.xml_* file with your own, custom, configuration.
130+
plug-ins or replace the provided *_config.xml_* file with your own, custom, configuration.
131131

132132
In order to include your modifications in the Jenkins image, you need to have a Git
133133
repository with the following directory structure:
134134

135135
*_plugins_*::
136-
This directory contains those binary Jenkins plugins you want to copy into Jenkins.
136+
This directory contains those binary Jenkins plug-ins you want to copy into Jenkins.
137137

138138
*_plugins.txt_*::
139-
This file lists the plugins you want to install (see the section above).
139+
This file lists the plug-ins you want to install (see the section above).
140140

141141
*_configuration/jobs_*::
142142
This directory contains the Jenkins job definitions.
@@ -213,18 +213,18 @@ slave.
213213
For more details on the sample job included in this image, see this link:https://github.com/openshift/origin/blob/master/examples/jenkins/README.md[tutorial].
214214

215215
ifdef::openshift-origin[]
216-
== OpenShift Pipeline Plugin
216+
== OpenShift Pipeline Plug-in
217217

218-
The Jenkins image's list of pre-installed plugins includes a plugin which assists in the creating of CI/CD workflows that run against
218+
The Jenkins image's list of pre-installed plug-ins includes a plug-in which assists in the creating of CI/CD workflows that run against
219219
an OpenShift server. A series of build steps, post-build actions, as well as SCM-style polling are provided which equate to administrative
220220
and operational actions on the OpenShift server and the API artifacts hosted there.
221221

222-
In addition to being accessible from the classic "freestyle" form of Jenkins job, the build steps as of version 1.0.14 of the OpenShift Pipeline Plugin
223-
are also avaible to Jenkins Pipeline jobs via the DSL extension points provided by the Jenkins Pipeline Plugin.
222+
In addition to being accessible from the classic "freestyle" form of Jenkins job, the build steps as of version 1.0.14 of the OpenShift Pipeline Plug-in
223+
are also avaible to Jenkins Pipeline jobs via the DSL extension points provided by the Jenkins Pipeline Plug-in.
224224

225-
The https://github.com/openshift/jenkins/tree/master/1/contrib/openshift/configuration/jobs/OpenShift%20Sample[sample Jenkins job] that is pre-configured in the Jenkins image utilizes the OpenShift pipeline plugin and serves as an example of
226-
how to leverage the plugin for creating CI/CD flows for OpenShift in Jenkins.
225+
The https://github.com/openshift/jenkins/tree/master/1/contrib/openshift/configuration/jobs/OpenShift%20Sample[sample Jenkins job] that is pre-configured in the Jenkins image utilizes the OpenShift pipeline plug-in and serves as an example of
226+
how to leverage the plug-in for creating CI/CD flows for OpenShift in Jenkins.
227227

228-
See the https://github.com/openshift/jenkins-plugin/[the plugin's README] for a detailed description of what is available.
228+
See the https://github.com/openshift/jenkins-plugin/[the plug-in's README] for a detailed description of what is available.
229229

230230
endif::openshift-origin[]

0 commit comments

Comments
 (0)