Skip to content

Commit e6358d6

Browse files
authored
Minor doc updates (#594)
1 parent 8571564 commit e6358d6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

docs/logging/020_logging.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ spec:
140140
- "-Dcoherence.log.logger=com.oracle.coherence"
141141
- "-Djava.util.logging.config.file=/coherence-operator/utils/logging/logging.properties"
142142
volumes:
143-
- name: logs # <1>
143+
- name: logs
144144
emptyDir: {}
145145
volumeMounts:
146-
- name: logs # <2>
146+
- name: logs
147147
mountPath: /logs
148148
sideCars:
149-
- name: fluentd # <1>
149+
- name: fluentd # <1>
150150
image: "fluent/fluentd-kubernetes-daemonset:v1.14-debian-elasticsearch7-1"
151151
args:
152152
- "-c"

docs/management/020_management_over_rest.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Which should result in a response similar to the following:
191191
192192
=== Access the Swagger Endpoint
193193
194-
Issue the following `curl` command to access the Sagger endpoint, which documents all the REST API's available.
194+
Issue the following `curl` command to access the Swagger endpoint, which documents all the REST APIs available.
195195
196196
[source,bash]
197197
----

docs/ordering/010_overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The default behaviour of the operator is to create the `StatefulSet` for a `Cohe
1414
Sometimes this behaviour is not suitable if, for example, when application code running in one deployment depends on the
1515
availability of another deployment.
1616
Typically, this might be storage disabled members having functionality that relies on the storage members being ready first.
17-
The `Coherence` CRD allows can be configured with a `startQuorum` that defines a deployment's dependency on other
17+
The `Coherence` CRD can be configured with a `startQuorum` that defines a deployment's dependency on other
1818
deployments in the cluster.
1919
2020
NOTE: The `startQuorum` only applies when a cluster is initially being started by the operator, it does not apply in other

docs/ports/020_container_ports.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
The `name` field in the `Coherence` CRD's port spec maps to the `name` field in the Container port spec.
5757
<2> The `port` field in the `Coherence` CRD's port spec maps to the `containerPort` in the Container port spec.
5858
59-
For each additional port the Operator will create a `Service` of tyep `ClusterIP` with a default configuration.
59+
For each additional port the Operator will create a `Service` of type `ClusterIP` with a default configuration.
6060
The name of the service will be the `Coherence` resource's name with the port name appended to it,
6161
so in this case it will be `test-cluster-rest`. The `Service` might look like this:
6262

docs/scaling/010_overview.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ spec:
9595
=== Scaling StatusHA Probe
9696
9797
The StatusHA check performed by the Operator uses a http endpoint that the Operator runs on a well-known port in the
98-
Coherence JVM. This endpoint does performs a simple check to verify that none of the partitioned cache services known
98+
Coherence JVM. This endpoint performs a simple check to verify that none of the partitioned cache services known
9999
about by Coherence have an endangered status. If an application has a different concept of what "safe" means it can
100100
implement a different method to check the status during scaling.
101101
@@ -105,7 +105,7 @@ types of probe to be configured.
105105
106106
==== Using a HTTP Get Probe
107107
108-
A HTTP get probe works the same way as a
108+
An HTTP get probe works the same way as a
109109
https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-a-liveness-http-request[Kubernetes liveness http request]
110110
111111
The probe can be configured as follows
@@ -147,7 +147,7 @@ spec:
147147
148148
==== Using an Exec Command Probe
149149
150-
A TCP probe works the same way as a
150+
An exec probe works the same way as a
151151
https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-a-liveness-command[Kubernetes Exec liveness probe]
152152
153153
The probe can be configured as follows

0 commit comments

Comments
 (0)