Skip to content

Commit c7942e9

Browse files
committed
Remove code quotes.
1 parent a2959ab commit c7942e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/concepts/pages/operations/cluster_operations.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ IMPORTANT: When setting `clusterOperation.reconciliationPaused` and `clusterOper
2626

2727
Sometimes it is necessary to restart services deployed in Kubernetes. A service restart should induce as little disruption as possible, ideally none.
2828

29-
Most operators create `StatefulSet` objects for the products they manage and Kubernetes offers a rollout mechanism to restart them. You can use `kubectl rollout restart statefulset` to restart a StatefulSet previously created by an operator.
29+
Most operators create StatefulSet objects for the products they manage and Kubernetes offers a rollout mechanism to restart them. You can use `kubectl rollout restart statefulset` to restart a StatefulSet previously created by an operator.
3030

31-
For example, an Airflow stack will have three `ServiceSets` created for it: `scheduler`, `webserver` and `worker`. So given the following stateful sets deployed for an Airflow stack:
31+
For example, an Airflow stack will have three ServiceSets created for it: `scheduler`, `webserver` and `worker`. So given the following stateful sets deployed for an Airflow stacklet:
3232

3333
[source,shell]
3434
----
@@ -50,7 +50,7 @@ To restart the Airflow scheduler, run:
5050
statefulset.apps/airflow-scheduler-default restarted
5151
----
5252

53-
Sometimes you want to restart all `Pods` of stack and not just individual roles. This can be achieved in a similar manner by using labels instead of `StatefulSet` names. Continuing with the example above, to restart all Airflow `Pods` you would have to run:
53+
Sometimes you want to restart all Pods of stack and not just individual roles. This can be achieved in a similar manner by using labels instead of StatefulSet names. Continuing with the example above, to restart all Airflow Pods you would have to run:
5454

5555
[source,shell]
5656
----

0 commit comments

Comments
 (0)