Skip to content

Commit ff98162

Browse files
committed
docs: quote boolean-like values in CHOp config example YAML
1 parent 50e8d04 commit ff98162

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/chi-examples/70-chop-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,16 +154,16 @@ spec:
154154
# - to be included into a ClickHouse cluster
155155
# respectfully before moving forward with host reconcile
156156
wait:
157-
exclude: true
158-
queries: true
159-
include: false
157+
exclude: "true"
158+
queries: "true"
159+
include: "false"
160160
# The operator during reconcile procedure should wait for replicas to catch-up
161161
# replication delay a.k.a replication lag for the following replicas
162162
replicas:
163163
# All replicas (new and known earlier) are explicitly requested to wait for replication to catch-up
164-
all: no
164+
all: "no"
165165
# New replicas only are requested to wait for replication to catch-up
166-
new: yes
166+
new: "yes"
167167
# Replication catch-up is considered to be completed as soon as replication delay
168168
# a.k.a replication lag - calculated as "MAX(absolute_delay) FROM system.replicas"
169169
# is within this specified delay (in seconds)
@@ -172,11 +172,11 @@ spec:
172172
# Whether the operator during host launch procedure should wait for startup probe to succeed.
173173
# In case probe is unspecified wait is assumed to be completed successfully.
174174
# Default option value is to do not wait.
175-
startup: no
175+
startup: "no"
176176
# Whether the operator during host launch procedure should wait for readiness probe to succeed.
177177
# In case probe is unspecified wait is assumed to be completed successfully.
178178
# Default option value is to wait.
179-
readiness: yes
179+
readiness: "yes"
180180

181181
################################################
182182
##

0 commit comments

Comments
 (0)