-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathactions.yaml
More file actions
463 lines (463 loc) · 13.8 KB
/
Copy pathactions.yaml
File metadata and controls
463 lines (463 loc) · 13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
pause-health:
description: "Pause ceph health operations across the entire ceph cluster"
resume-health:
description: "Resume ceph health operations across the entire ceph cluster"
get-health:
description: "Output the current cluster health reported by `ceph health`"
create-cache-tier:
description: "Create a new cache tier"
params:
backer-pool:
type: string
description: "The name of the pool that will back the cache tier. Also known as the cold pool"
cache-pool:
type: string
description: "The name of the pool that will be the cache pool. Also known as the hot pool"
cache-mode:
type: string
default: writeback
enum:
- writeback
- readonly
description: "The mode of the caching tier. Please refer to the Ceph docs for more information"
required:
- backer-pool
- cache-pool
additionalProperties: false
remove-cache-tier:
description: "Remove an existing cache tier"
params:
backer-pool:
type: string
description: "The name of the pool that backs the cache tier. Also known as the cold pool"
cache-pool:
type: string
description: "The name of the pool that is the cache pool. Also known as the hot pool"
required:
- backer-pool
- cache-pool
additionalProperties: false
create-pool:
description: "Creates a pool"
params:
name:
type: string
description: "The name of the pool"
app-name:
type: string
description: "App name to set on the newly created pool."
profile-name:
type: string
description: "The crush profile to use for this pool. The ruleset must exist first."
pool-type:
type: string
default: replicated
enum:
- replicated
- erasure
- erasure-coded
description: "The pool type which may either be replicated to recover from lost OSDs by keeping multiple copies of the objects or erasure to get a kind of generalized RAID5 capability."
replicas:
type: integer
default: 3
description: "For the replicated pool this is the number of replicas to store of each object."
erasure-profile-name:
type: string
default: default
description: "The name of the erasure coding profile to use for this pool. Note this profile must exist before calling create-pool"
percent-data:
type: integer
default: 10
description: "The percentage of data that is expected to be contained in the pool for the specific OSD set. Default value is to assume 10% of the data is for this pool, which is a relatively low % of the data but allows for the pg_num to be increased."
allow-ec-overwrites:
type: boolean
description: "Permit overwrites for erasure coded pool types."
required:
- name
additionalProperties: false
create-crush-rule:
description: "Create a new replicated CRUSH rule to use on a pool."
params:
name:
type: string
description: "The name of the rule"
failure-domain:
type: string
default: host
enum:
- chassis
- datacenter
- host
- osd
- pdu
- pod
- rack
- region
- room
- root
- row
description: "The failure-domain=host will create a CRUSH ruleset that ensures no two chunks are stored in the same host."
device-class:
type: string
enum:
- hdd
- ssd
- nvme
description: "CRUSH device class to use for new rule."
required:
- name
additionalProperties: false
create-erasure-profile:
description: "Create a new erasure code profile to use on a pool."
params:
name:
type: string
description: "The name of the profile"
failure-domain:
type: string
enum:
- chassis
- datacenter
- host
- osd
- pdu
- pod
- rack
- region
- room
- root
- row
description: "The failure-domain=host will create a CRUSH ruleset that ensures no two chunks are stored in the same host."
plugin:
type: string
default: jerasure
enum:
- jerasure
- isa
- lrc
- shec
- clay
description: "The erasure plugin to use for this profile. See http://docs.ceph.com/docs/master/rados/operations/erasure-code-profile/ for more details"
data-chunks:
type: integer
default: 3
description: "The number of data chunks, i.e. the number of chunks in which the original object is divided. For instance if K = 2 a 10KB object will be divided into K objects of 5KB each."
coding-chunks:
type: integer
default: 2
description: "The number of coding chunks, i.e. the number of additional chunks computed by the encoding functions. If there are 2 coding chunks, it means 2 OSDs can be out without losing data."
locality-chunks:
type: integer
description: "LRC plugin - Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set."
crush-locality:
type: string
enum:
- chassis
- datacenter
- host
- osd
- pdu
- pod
- rack
- region
- room
- root
- row
description: "LRC plugin - The type of CRUSH bucket in which each set of chunks defined by locality-chunks will be stored."
durability-estimator:
type: integer
description: "SHEC plugin - the number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data."
helper-chunks:
type: integer
description: "CLAY plugin - number of OSDs requests to send data during recovery of a single chunk."
scalar-mds:
type: string
enum:
- jerasure
- isa
- shec
description: "CLAY plugin - specifies the plugin that is used as a building block in the layered construction."
device-class:
type: string
enum:
- hdd
- ssd
- nvme
description: "CRUSH device class to use for erasure profile."
required:
- name
additionalProperties: false
get-erasure-profile:
description: "Display an erasure code profile."
params:
name:
type: string
description: "The name of the profile"
required:
- name
additionalProperties: false
delete-erasure-profile:
description: "Deletes an erasure code profile."
params:
name:
type: string
description: "The name of the profile"
required:
- name
additionalProperties: false
list-erasure-profiles:
description: "List the names of all erasure code profiles"
additionalProperties: false
list-inconsistent-objs:
description: "List the names of the inconsistent objects per PG"
params:
format:
type: string
enum:
- json
- yaml
- text
default: text
description: "The output format, either json, yaml or text (default)"
additionalProperties: false
list-pools:
description: "List your cluster's pools"
params:
format:
type: string
default: text
enum:
- text
- text-full
- json
description: "Specify output format (text|text-full|json). The formats `text-full` and `json` provide the same level of details."
additionalProperties: false
set-pool-max-bytes:
description: "Set pool quotas for the maximum number of bytes."
params:
max:
type: integer
description: "The name of the pool"
name:
type: string
description: "The name of the pool"
required:
- name
- max
additionalProperties: false
delete-pool:
description: "Deletes the named pool"
params:
name:
type: string
description: "The name of the pool"
required:
- name
additionalProperties: false
rename-pool:
description: "Rename a pool"
params:
name:
type: string
description: "The name of the pool"
new-name:
type: string
description: "The new name of the pool"
required:
- name
- new-name
additionalProperties: false
pool-statistics:
description: "Show a pool's utilization statistics"
additionalProperties: false
snapshot-pool:
description: "Snapshot a pool"
params:
name:
type: string
description: "The name of the pool"
snapshot-name:
type: string
description: "The name of the snapshot"
required:
- snapshot-name
- name
additionalProperties: false
remove-pool-snapshot:
description: "Remove a pool snapshot"
params:
name:
type: string
description: "The name of the pool"
snapshot-name:
type: string
description: "The name of the snapshot"
required:
- snapshot-name
- name
additionalProperties: false
pool-set:
description: "Set a value for the pool"
params:
name:
type: string
description: "The pool to set this variable on."
key:
type: string
description: "Any valid Ceph key from http://docs.ceph.com/docs/master/rados/operations/pools/#set-pool-values"
value:
# LP: #1838650 - unfortunately, Juju appears to consider '3' on the
# command line as not being a string, and has to be quoted as "'3'". So,
# we actually let the charm do the verification, and let any value
# through here.
description: "The value to set"
required:
- key
- value
- name
additionalProperties: false
pool-get:
description: "Get a value for the pool"
params:
name:
type: string
description: "The pool to get this variable from."
key:
type: string
description: "Any valid Ceph key from http://docs.ceph.com/docs/master/rados/operations/pools/#get-pool-values"
required:
- key
- name
additionalProperties: false
crushmap-update:
description: "Apply a json crushmap definition. This will throw away the existing ceph crushmap and apply the new definition. Use with extreme caution. WARNING - This function is extremely dangerous if misused. It can very easily break your cluster in unexpected ways."
params:
map:
type: string
description: "The json crushmap blob"
required:
- map
additionalProperties: false
show-disk-free:
description: "Show disk utilization by host and OSD."
params:
format:
type: string
enum:
- json
- json-pretty
- xml
- xml-pretty
- plain
default: plain
description: "Output format, either json, json-pretty, xml, xml-pretty, plain; defaults to plain"
additionalProperties: false
copy-pool:
description: "Copy contents of a pool to a new pool."
params:
source:
type: string
description: "Pool to copy data from."
target:
type: string
description: "Pool to copy data to."
required:
- source
- target
additionalProperties: false
set-noout:
description: "Set ceph noout across the cluster."
unset-noout:
description: "Unset ceph noout across the cluster."
security-checklist:
description: Validate the running configuration against the OpenStack security guides checklist
purge-osd:
description: "Removes an OSD from a cluster map, removes its authentication key, removes the OSD from the OSD map. The OSD must have zero weight before running this action, to avoid excessive I/O on the cluster."
params:
osd:
type: integer
description: "ID of the OSD to remove, e.g. for osd.53, supply 53."
i-really-mean-it:
type: boolean
description: "This must be toggled to enable actually performing this action."
required:
- osd
- i-really-mean-it
change-osd-weight:
description: "Set the crush weight of an OSD to the new value supplied."
params:
osd:
type: integer
description: "ID of the OSD to operate on, e.g. for osd.53, supply 53."
weight:
type: number
description: "The new weight of the OSD, must be a decimal number, e.g. 1.04"
required:
- osd
- weight
get-quorum-status:
description: "Return lists of the known mons, and online mons, to determine if there is quorum."
params:
format:
type: string
default: text
enum:
- text
- json
description: Specify output format (text|json).
list-crush-rules:
description: "List CEPH crush rules"
params:
format:
type: string
enum:
- json
- yaml
- text
default: text
description: "The output format, either json, yaml or text (default)"
additionalProperties: false
get-or-create-user:
description: "Get or create a user and it's capabilities."
params:
username:
type: string
description: "User ID to get or create."
mon-caps:
type: string
default: allow rw
description: "Monitor capabilities include r, w, x access settings or profile {name}."
osd-caps:
type: string
default: allow rw
description: "OSD capabilities include r, w, x, class-read, class-write access settings or profile {name}."
required: [username]
delete-user:
description: "Delete a user."
params:
username:
type: string
description: "User ID to delete."
required: [username]
pg-repair:
description: "Repair inconsistent placement groups, if safe to do so."
reset-osd-count-report:
description: "Update report of osds present in osd tree. Used for monitoring."
list-entities:
description: "Returns a list of entities recognized by the Ceph cluster."
params:
format:
type: string
enum:
- json
- yaml
- text
default: text
description: "The output format, either json, yaml or text (default)"
rotate-key:
description: "Rotate the key of an entity in the Ceph cluster"
params:
entity:
type: string
description: The entity for which to rotate the key
required: [entity]