You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consistency for capitalization of term operator in documentation (#35753)
* Because operators are not kubernetes objects, the word operators should only be capitlized at the start of sentences, URLs where the external source has done so, abbreviations, or start of headers.
* only changing en initially for the pr process
* text styling on line 18 for operator pattern
much as you would run any containerized application.
83
83
For example, you can run the controller in your cluster as a Deployment.
84
84
85
-
## Using an Operator {#using-operators}
85
+
## Using an operator {#using-operators}
86
86
87
-
Once you have an Operator deployed, you'd use it by adding, modifying or
88
-
deleting the kind of resource that the Operator uses. Following the above
89
-
example, you would set up a Deployment for the Operator itself, and then:
87
+
Once you have an operator deployed, you'd use it by adding, modifying or
88
+
deleting the kind of resource that the operator uses. Following the above
89
+
example, you would set up a Deployment for the operator itself, and then:
90
90
91
91
```shell
92
92
kubectl get SampleDB # find configured databases
93
93
94
94
kubectl edit SampleDB/example-database # manually change some settings
95
95
```
96
96
97
-
…and that's it! The Operator will take care of applying the changes
97
+
…and that's it! The operator will take care of applying the changes
98
98
as well as keeping the existing service in good shape.
99
99
100
-
## Writing your own Operator {#writing-operator}
100
+
## Writing your own operator {#writing-operator}
101
101
102
-
If there isn't an Operator in the ecosystem that implements the behavior you
102
+
If there isn't an operator in the ecosystem that implements the behavior you
103
103
want, you can code your own.
104
104
105
-
You also implement an Operator (that is, a Controller) using any language / runtime
105
+
You also implement an operator (that is, a Controller) using any language / runtime
106
106
that can act as a [client for the Kubernetes API](/docs/reference/using-api/client-libraries/).
107
107
108
108
Following are a few libraries and tools you can use to write your own cloud native
109
-
Operator.
109
+
operator.
110
110
111
111
{{% thirdparty-content %}}
112
112
@@ -129,6 +129,6 @@ Operator.
129
129
* Learn more about [Custom Resources](/docs/concepts/extend-kubernetes/api-extension/custom-resources/)
130
130
* Find ready-made operators on [OperatorHub.io](https://operatorhub.io/) to suit your use case
131
131
*[Publish](https://operatorhub.io/) your operator for other people to use
132
-
* Read [CoreOS' original article](https://web.archive.org/web/20170129131616/https://coreos.com/blog/introducing-operators.html) that introduced the Operator pattern (this is an archived version of the original article).
133
-
* Read an [article](https://cloud.google.com/blog/products/containers-kubernetes/best-practices-for-building-kubernetes-operators-and-stateful-apps) from Google Cloud about best practices for building Operators
132
+
* Read [CoreOS' original article](https://web.archive.org/web/20170129131616/https://coreos.com/blog/introducing-operators.html) that introduced the operator pattern (this is an archived version of the original article).
133
+
* Read an [article](https://cloud.google.com/blog/products/containers-kubernetes/best-practices-for-building-kubernetes-operators-and-stateful-apps) from Google Cloud about best practices for building operators
0 commit comments