Skip to content

Commit b9702e7

Browse files
authored
Merge pull request #73684 from brendan-daly-red-hat/OSDOCS-8688
/lgtm OSDOCS-8688#fixing callouts
2 parents daecfc2 + 5988196 commit b9702e7

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

modules/etcd-creating-automated-backups.adoc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ metadata:
8484
name: etcd-single-backup
8585
namespace: openshift-etcd
8686
spec:
87-
pvcName: etcd-backup-pvc <.>
87+
pvcName: etcd-backup-pvc <1>
8888
----
89-
<.> The name of the persistent volume claim (PVC) to save the backup to. Adjust this value according to your environment.
89+
<1> The name of the persistent volume claim (PVC) to save the backup to. Adjust this value according to your environment.
9090

9191
. Apply the CR to start a single backup:
9292
+
@@ -125,12 +125,12 @@ spec:
125125
- ReadWriteOnce
126126
resources:
127127
requests:
128-
storage: 200Gi <.>
129-
storageClassName: standard-csi <.>
128+
storage: 200Gi <1>
129+
storageClassName: standard-csi <2>
130130
volumeMode: Filesystem
131131
----
132-
<.> The amount of storage available to the PVC. Adjust this value for your requirements.
133-
<.> The name of the `StorageClass` required by the claim. Adjust this value according to your environment.
132+
<1> The amount of storage available to the PVC. Adjust this value for your requirements.
133+
<2> The name of the `StorageClass` required by the claim. Adjust this value according to your environment.
134134
+
135135
[NOTE]
136136
====
@@ -216,7 +216,7 @@ metadata:
216216
name: etcd-backup-pv-fs
217217
spec:
218218
capacity:
219-
storage: 100Gi <.>
219+
storage: 100Gi <1>
220220
volumeMode: Filesystem
221221
accessModes:
222222
- ReadWriteMany
@@ -231,10 +231,10 @@ spec:
231231
- key: kubernetes.io/hostname
232232
operator: In
233233
values:
234-
- <example-master-node> <.>
234+
- <example-master-node> <2>
235235
----
236-
<.> The amount of storage available to the PV. Adjust this value for your requirements.
237-
<.> Replace this value with the node to attach this PV to.
236+
<1> The amount of storage available to the PV. Adjust this value for your requirements.
237+
<2> Replace this value with the node to attach this PV to.
238238
+
239239
[TIP]
240240
====
@@ -274,10 +274,10 @@ spec:
274274
volumeMode: Filesystem
275275
resources:
276276
requests:
277-
storage: 10Gi <.>
277+
storage: 10Gi <1>
278278
storageClassName: local-storage
279279
----
280-
<.> The amount of storage available to the PVC. Adjust this value for your requirements.
280+
<1> The amount of storage available to the PVC. Adjust this value for your requirements.
281281

282282
.. Apply the PVC by running the following command:
283283
+
@@ -298,11 +298,11 @@ metadata:
298298
name: etcd-recurring-backup
299299
spec:
300300
etcd:
301-
schedule: "20 4 * * *" <.>
301+
schedule: "20 4 * * *" <1>
302302
timeZone: "UTC"
303303
pvcName: etcd-backup-pvc
304304
----
305-
<.> The `CronTab` schedule for recurring backups. Adjust this value for your needs.
305+
<1> The `CronTab` schedule for recurring backups. Adjust this value for your needs.
306306
+
307307
To use retention based on the maximum number of backups, add the following key-value pairs to the `etcd` key:
308308
+
@@ -311,12 +311,12 @@ To use retention based on the maximum number of backups, add the following key-v
311311
spec:
312312
etcd:
313313
retentionPolicy:
314-
retentionType: RetentionNumber <.>
314+
retentionType: RetentionNumber <1>
315315
retentionNumber:
316-
maxNumberOfBackups: 5 <.>
316+
maxNumberOfBackups: 5 <2>
317317
----
318-
<.> The retention type. Defaults to `RetentionNumber` if unspecified.
319-
<.> The maximum number of backups to retain. Adjust this value for your needs. Defaults to 15 backups if unspecified.
318+
<1> The retention type. Defaults to `RetentionNumber` if unspecified.
319+
<2> The maximum number of backups to retain. Adjust this value for your needs. Defaults to 15 backups if unspecified.
320320
+
321321
[WARNING]
322322
====
@@ -332,9 +332,9 @@ spec:
332332
retentionPolicy:
333333
retentionType: RetentionSize
334334
retentionSize:
335-
maxSizeOfBackupsGb: 20 <.>
335+
maxSizeOfBackupsGb: 20 <1>
336336
----
337-
<.> The maximum file size of the retained backups in gigabytes. Adjust this value for your needs. Defaults to 10 GB if unspecified.
337+
<1> The maximum file size of the retained backups in gigabytes. Adjust this value for your needs. Defaults to 10 GB if unspecified.
338338
+
339339
[WARNING]
340340
====

0 commit comments

Comments
 (0)