This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c45a21ae647cb332f96768d1a1e7fe00489a0b1e
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Wed Feb 21 12:36:24 2024 +0100

    CAMEL-20410: documentation fixes for camel-kubernetes
    
    - Fixed samples
    - Fixed grammar and typos
    - Fixed punctuation
    - Added and/or fixed links
    - Converted to use tabs
---
 .../src/main/docs/kubernetes-config-maps-component.adoc        |  8 ++++----
 .../src/main/docs/kubernetes-hpa-component.adoc                |  8 ++++----
 .../src/main/docs/kubernetes-job-component.adoc                | 10 +++++-----
 .../src/main/docs/kubernetes-namespaces-component.adoc         |  8 ++++----
 .../src/main/docs/kubernetes-nodes-component.adoc              |  8 ++++----
 .../docs/kubernetes-persistent-volumes-claims-component.adoc   |  8 ++++----
 .../src/main/docs/kubernetes-persistent-volumes-component.adoc |  8 ++++----
 .../src/main/docs/kubernetes-pods-component.adoc               |  8 ++++----
 .../docs/kubernetes-replication-controllers-component.adoc     |  8 ++++----
 .../src/main/docs/kubernetes-resources-quota-component.adoc    |  8 ++++----
 .../src/main/docs/kubernetes-secrets-component.adoc            |  8 ++++----
 .../src/main/docs/kubernetes-service-accounts-component.adoc   |  8 ++++----
 .../camel-kubernetes/src/main/docs/kubernetes-summary.adoc     |  8 ++++----
 .../src/main/docs/openshift-build-configs-component.adoc       |  8 ++++----
 .../src/main/docs/openshift-builds-component.adoc              |  8 ++++----
 .../src/main/docs/openshift-deploymentconfigs-component.adoc   |  8 ++++----
 16 files changed, 65 insertions(+), 65 deletions(-)

diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-config-maps-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-config-maps-component.adoc
index f13499a6739..4d898b16cb6 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-config-maps-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-config-maps-component.adoc
@@ -47,7 +47,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes ConfigMaps Producer Examples
 
-- listConfigMaps: this operation list the configmaps
+- listConfigMaps: this operation lists the configmaps
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -56,9 +56,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of ConfigMaps from your cluster
+This operation returns a List of ConfigMaps from your cluster
 
-- listConfigMapsByLabels: this operation list the configmaps selected by label
+- listConfigMapsByLabels: this operation lists the configmaps selected by label
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -76,7 +76,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of ConfigMaps from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of ConfigMaps from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 == Kubernetes ConfigMaps Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-hpa-component.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-hpa-component.adoc
index 7f95b0b1723..dc58925a7bd 100644
--- a/components/camel-kubernetes/src/main/docs/kubernetes-hpa-component.adoc
+++ b/components/camel-kubernetes/src/main/docs/kubernetes-hpa-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes HPA Producer Examples
 
-- listHPA: this operation list the HPAs on a kubernetes cluster
+- listHPA: this operation lists the HPAs on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of HPAs from your cluster
+This operation returns a List of HPAs from your cluster
 
-- listDeploymentsByLabels:  this operation list the HPAs by labels on a 
kubernetes cluster
+- listDeploymentsByLabels: this operation lists the HPAs by labels on a 
kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of HPAs from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of HPAs from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 == Kubernetes HPA Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc
index 166da9bd126..3e3f837e7a1 100644
--- a/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc
+++ b/components/camel-kubernetes/src/main/docs/kubernetes-job-component.adoc
@@ -47,7 +47,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Job Producer Examples
 
-- listJob: this operation list the jobs on a kubernetes cluster
+- listJob: this operation lists the jobs on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -56,9 +56,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Job from your cluster
+This operation returns a List of Jobs from your cluster
 
-- listJobByLabels:  this operation list the jobs by labels on a kubernetes 
cluster
+- listJobByLabels:  this operation lists the jobs by labels on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -75,9 +75,9 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Jobs from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of Jobs from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
-- createJob: This operation create a job on a Kubernetes Cluster
+- createJob: This operation creates a job on a Kubernetes Cluster
 
 We have a wonderful example of this operation thanks to 
https://github.com/Emmerson-Miranda[Emmerson Miranda] from this 
https://github.com/Emmerson-Miranda/camel/blob/master/camel3-cdi/cdi-k8s-pocs/src/main/java/edu/emmerson/camel/k8s/jobs/camel_k8s_jobs/KubernetesCreateJob.java[Java
 test]
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-namespaces-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-namespaces-component.adoc
index 16e5fd9a7ec..086ef9dd102 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-namespaces-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-namespaces-component.adoc
@@ -47,7 +47,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Namespaces Producer Examples
 
-- listNamespaces: this operation list the namespaces on a kubernetes cluster
+- listNamespaces: this operation lists the namespaces on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -56,9 +56,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of namespaces from your cluster
+This operation returns a List of namespaces from your cluster
 
-- listNamespacesByLabels:  this operation list the namespaces by labels on a 
kubernetes cluster
+- listNamespacesByLabels:  this operation lists the namespaces by labels on a 
kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -75,7 +75,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Namespaces from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Namespaces from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 == Kubernetes Namespaces Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-nodes-component.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-nodes-component.adoc
index 1ed6019f979..7d7a90e21cb 100644
--- a/components/camel-kubernetes/src/main/docs/kubernetes-nodes-component.adoc
+++ b/components/camel-kubernetes/src/main/docs/kubernetes-nodes-component.adoc
@@ -47,7 +47,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Nodes Producer Examples
 
-- listNodes: this operation list the nodes on a kubernetes cluster
+- listNodes: this operation lists the nodes on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -56,9 +56,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Nodes from your cluster
+This operation returns a List of Nodes from your cluster
 
-- listNodesByLabels:  this operation list the nodes by labels on a kubernetes 
cluster
+- listNodesByLabels:  this operation lists the nodes by labels on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -75,7 +75,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Nodes from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Nodes from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 == Kubernetes Nodes Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-claims-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-claims-component.adoc
index 82ac551df2e..0efef5235ed 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-claims-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-claims-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Persistent Volume Claims Producer Examples
 
-- listPersistentVolumesClaims: this operation list the pvc on a kubernetes 
cluster
+- listPersistentVolumesClaims: this operation lists the pvc on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of pvc from your cluster
+This operation returns a List of pvc from your cluster
 
-- listPersistentVolumesClaimsByLabels:  this operation list the pvc by labels 
on a kubernetes cluster
+- listPersistentVolumesClaimsByLabels:  this operation lists the pvc by labels 
on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of pvc from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of pvc from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
 
 
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-component.adoc
index d0cdabfc4b8..a6e20bd3811 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-persistent-volumes-component.adoc
@@ -43,7 +43,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Persistent Volumes Producer Examples
 
-- listPersistentVolumes: this operation list the pv on a kubernetes cluster
+- listPersistentVolumes: this operation lists the pv on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -52,9 +52,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of pv from your cluster
+This operation returns a List of pv from your cluster
 
-- listPersistentVolumesByLabels:  this operation list the pv by labels on a 
kubernetes cluster
+- listPersistentVolumesByLabels:  this operation lists the pv by labels on a 
kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -71,7 +71,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of pv from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of pv from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
 
 
 include::spring-boot:partial$starter.adoc[]
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-pods-component.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-pods-component.adoc
index 7bac52e82a7..87363977b9a 100644
--- a/components/camel-kubernetes/src/main/docs/kubernetes-pods-component.adoc
+++ b/components/camel-kubernetes/src/main/docs/kubernetes-pods-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Pods Producer Examples
 
-- listPods: this operation list the pods on a kubernetes cluster
+- listPods: this operation lists the pods on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Pods from your cluster
+This operation returns a List of Pods from your cluster
 
-- listPodsByLabels:  this operation list the pods by labels on a kubernetes 
cluster
+- listPodsByLabels:  this operation lists the pods by labels on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Pods from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of Pods from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 == Kubernetes Pods Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-replication-controllers-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-replication-controllers-component.adoc
index 86d47f4732b..3887562be51 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-replication-controllers-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-replication-controllers-component.adoc
@@ -48,7 +48,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Replication Controllers Producer Examples
 
-- listReplicationControllers: this operation list the RCs on a kubernetes 
cluster
+- listReplicationControllers: this operation lists the RCs on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -57,9 +57,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of RCs from your cluster
+This operation returns a List of RCs from your cluster
 
-- listReplicationControllersByLabels:  this operation list the RCs by labels 
on a kubernetes cluster
+- listReplicationControllersByLabels:  this operation lists the RCs by labels 
on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -76,7 +76,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of RCs from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
+This operation returns a List of RCs from your cluster, using a label selector 
(with key1 and key2, with value value1 and value2)
 
 == Kubernetes Replication Controllers Consumer Example
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-resources-quota-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-resources-quota-component.adoc
index 4fa36e0578e..25ec650b6eb 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-resources-quota-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-resources-quota-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Resource Quota Producer Examples
 
-- listResourcesQuota: this operation list the Resource Quotas on a kubernetes 
cluster
+- listResourcesQuota: this operation lists the Resource Quotas on a kubernetes 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Resource Quotas from your cluster
+This operation returns a List of Resource Quotas from your cluster
 
-- listResourcesQuotaByLabels:  this operation list the Resource Quotas by 
labels on a kubernetes cluster
+- listResourcesQuotaByLabels:  this operation lists the Resource Quotas by 
labels on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Resource Quotas from your cluster, using a 
label selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Resource Quotas from your cluster, using a 
label selector (with key1 and key2, with value value1 and value2)
 
 
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-secrets-component.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-secrets-component.adoc
index e6f853b850d..e334bc6f346 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-secrets-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-secrets-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes Secrets Producer Examples
 
-- listSecrets: this operation list the secrets on a kubernetes cluster
+- listSecrets: this operation lists the secrets on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of secrets from your cluster
+This operation returns a List of secrets from your cluster
 
-- listSecretsByLabels:  this operation list the Secrets by labels on a 
kubernetes cluster
+- listSecretsByLabels:  this operation lists the Secrets by labels on a 
kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Secrets from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Secrets from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 
 
diff --git 
a/components/camel-kubernetes/src/main/docs/kubernetes-service-accounts-component.adoc
 
b/components/camel-kubernetes/src/main/docs/kubernetes-service-accounts-component.adoc
index 70abff24b11..10ed53898c1 100644
--- 
a/components/camel-kubernetes/src/main/docs/kubernetes-service-accounts-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/kubernetes-service-accounts-component.adoc
@@ -46,7 +46,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Kubernetes ServiceAccounts Produce Examples
 
-- listServiceAccounts: this operation list the sa on a kubernetes cluster
+- listServiceAccounts: this operation lists the sa on a kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -55,9 +55,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of services from your cluster
+This operation returns a List of services from your cluster
 
-- listServiceAccountsByLabels:  this operation list the sa by labels on a 
kubernetes cluster
+- listServiceAccountsByLabels:  this operation lists the sa by labels on a 
kubernetes cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -74,7 +74,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Services from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Services from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 
 include::spring-boot:partial$starter.adoc[]
diff --git a/components/camel-kubernetes/src/main/docs/kubernetes-summary.adoc 
b/components/camel-kubernetes/src/main/docs/kubernetes-summary.adoc
index fb631a764cd..58fb5a9ecf2 100644
--- a/components/camel-kubernetes/src/main/docs/kubernetes-summary.adoc
+++ b/components/camel-kubernetes/src/main/docs/kubernetes-summary.adoc
@@ -45,7 +45,7 @@ from("direct:createPod")
     .toF("kubernetes-pods://%s?oauthToken=%s&operation=createPod", host, 
authToken);
 -------------------------------------------------------------
 
-By using the KubernetesConstants.KUBERNETES_POD_SPEC header you can specify 
your PodSpec and pass it to this operation.
+By using the `KubernetesConstants.KUBERNETES_POD_SPEC` header, you can specify 
your PodSpec and pass it to this operation.
 
 === Delete a pod
 
@@ -55,14 +55,14 @@ from("direct:createPod")
     .toF("kubernetes-pods://%s?oauthToken=%s&operation=deletePod", host, 
authToken);
 -------------------------------------------------------------
 
-By using the KubernetesConstants.KUBERNETES_POD_NAME header you can specify 
your Pod name and pass it to this operation.
+By using the `KubernetesConstants.KUBERNETES_POD_NAME` header, you can specify 
your Pod name and pass it to this operation.
 
 == Using Kubernetes ConfigMaps and Secrets
 
 The `camel-kubernetes` component also provides 
xref:manual:ROOT:using-propertyplaceholder.adoc[Property Placeholder]
-functions that loads the property values from Kubernetes _ConfigMaps_ or 
_Secrets_.
+functions that load the property values from Kubernetes _ConfigMaps_ or 
_Secrets_.
 
-For more information see 
xref:manual:ROOT:using-propertyplaceholder.adoc[Property Placeholder].
+For more information, see 
xref:manual:ROOT:using-propertyplaceholder.adoc[Property Placeholder].
 
 :camel-spring-boot-name: kubernetes
 
diff --git 
a/components/camel-kubernetes/src/main/docs/openshift-build-configs-component.adoc
 
b/components/camel-kubernetes/src/main/docs/openshift-build-configs-component.adoc
index ac9157259f2..994b86b9a01 100644
--- 
a/components/camel-kubernetes/src/main/docs/openshift-build-configs-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/openshift-build-configs-component.adoc
@@ -43,7 +43,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Openshift Build Configs Producer Examples
 
-- listBuilds: this operation list the Build Configs on an Openshift cluster
+- listBuilds: this operation lists the Build Configs on an Openshift cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -52,9 +52,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Builds from your Openshift cluster
+This operation returns a List of Builds from your Openshift cluster
 
-- listBuildsByLabels: this operation list the build configs by labels on an 
Openshift cluster
+- listBuildsByLabels: this operation lists the build configs by labels on an 
Openshift cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -71,7 +71,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Build configs from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Build configs from your cluster, using a 
label selector (with key1 and key2, with value value1 and value2)
 
 
 include::spring-boot:partial$starter.adoc[]
diff --git 
a/components/camel-kubernetes/src/main/docs/openshift-builds-component.adoc 
b/components/camel-kubernetes/src/main/docs/openshift-builds-component.adoc
index 04c08f054ed..2d9c102592d 100644
--- a/components/camel-kubernetes/src/main/docs/openshift-builds-component.adoc
+++ b/components/camel-kubernetes/src/main/docs/openshift-builds-component.adoc
@@ -43,7 +43,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Openshift Builds Producer Examples
 
-- listBuilds: this operation list the Builds on an Openshift cluster
+- listBuilds: this operation lists the Builds on an Openshift cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -52,9 +52,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Builds from your Openshift cluster
+This operation returns a List of Builds from your Openshift cluster
 
-- listBuildsByLabels: this operation list the builds by labels on an Openshift 
cluster
+- listBuildsByLabels: this operation lists the builds by labels on an 
Openshift cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -71,7 +71,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Builds from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Builds from your cluster, using a label 
selector (with key1 and key2, with value value1 and value2)
 
 
 include::spring-boot:partial$starter.adoc[]
diff --git 
a/components/camel-kubernetes/src/main/docs/openshift-deploymentconfigs-component.adoc
 
b/components/camel-kubernetes/src/main/docs/openshift-deploymentconfigs-component.adoc
index 603f5c70af7..0e31948c962 100644
--- 
a/components/camel-kubernetes/src/main/docs/openshift-deploymentconfigs-component.adoc
+++ 
b/components/camel-kubernetes/src/main/docs/openshift-deploymentconfigs-component.adoc
@@ -47,7 +47,7 @@ include::partial$component-endpoint-headers.adoc[]
 
 == Openshift Deployment Configs Producer Examples
 
-- listDeploymentConfigs: this operation list the deployments on a Openshift 
cluster
+- listDeploymentConfigs: this operation lists the deployments on an Openshift 
cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -56,9 +56,9 @@ from("direct:list").
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Deployment Configs from your cluster
+This operation returns a List of Deployment Configs from your cluster
 
-- listDeploymentConfigsByLabels:  this operation list the deployment configs 
by labels on a Openshift cluster
+- listDeploymentConfigsByLabels:  this operation lists the deployment configs 
by labels on an Openshift cluster
 
 [source,java]
 
--------------------------------------------------------------------------------
@@ -75,7 +75,7 @@ from("direct:listByLabels").process(new Processor() {
     to("mock:result");
 
--------------------------------------------------------------------------------
 
-This operation return a List of Deployment Configs from your cluster, using a 
label selector (with key1 and key2, with value value1 and value2)
+This operation returns a List of Deployment Configs from your cluster, using a 
label selector (with key1 and key2, with value value1 and value2)
 
 == Openshift Deployment Configs Consumer Example
 

Reply via email to