summaryrefslogtreecommitdiffstats
path: root/src/ansiblelint/schemas/ansible-navigator-config.json
blob: e81a878f4e1bf6f496814206415cb98acd3e6c63 (plain)
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
{
    "$schema": "http://json-schema.org/draft-07/schema",
    "additionalProperties": false,
    "properties": {
        "ansible-navigator": {
            "additionalProperties": false,
            "properties": {
                "ansible": {
                    "additionalProperties": false,
                    "properties": {
                        "cmdline": {
                            "description": "Extra parameters passed to the corresponding command",
                            "type": "string"
                        },
                        "config": {
                            "additionalProperties": false,
                            "properties": {
                                "help": {
                                    "default": false,
                                    "description": "Help options for ansible-config command in stdout mode",
                                    "enum": [
                                        true,
                                        false
                                    ],
                                    "type": "boolean"
                                },
                                "path": {
                                    "description": "Specify the path to the ansible configuration file",
                                    "type": "string"
                                }
                            }
                        },
                        "doc": {
                            "additionalProperties": false,
                            "properties": {
                                "help": {
                                    "default": false,
                                    "description": "Help options for ansible-doc command in stdout mode",
                                    "enum": [
                                        true,
                                        false
                                    ],
                                    "type": "boolean"
                                },
                                "plugin": {
                                    "additionalProperties": false,
                                    "properties": {
                                        "name": {
                                            "description": "Specify the plugin name",
                                            "type": "string"
                                        },
                                        "type": {
                                            "default": "module",
                                            "description": "Specify the plugin type, 'become', 'cache', 'callback', 'cliconf', 'connection', 'filter', 'httpapi', 'inventory', 'keyword', 'lookup', 'module', 'netconf', 'role', 'shell', 'strategy', 'test' or 'vars'",
                                            "enum": [
                                                "become",
                                                "cache",
                                                "callback",
                                                "cliconf",
                                                "connection",
                                                "filter",
                                                "httpapi",
                                                "inventory",
                                                "keyword",
                                                "lookup",
                                                "module",
                                                "netconf",
                                                "role",
                                                "shell",
                                                "strategy",
                                                "test",
                                                "vars"
                                            ],
                                            "type": "string"
                                        }
                                    },
                                    "type": "object"
                                }
                            },
                            "type": "object"
                        },
                        "inventory": {
                            "additionalProperties": false,
                            "properties": {
                                "entries": {
                                    "description": "Specify an inventory file path or comma separated host list",
                                    "items": {
                                        "type": "string"
                                    },
                                    "type": "array"
                                },
                                "help": {
                                    "default": false,
                                    "description": "Help options for ansible-inventory command in stdout mode",
                                    "enum": [
                                        true,
                                        false
                                    ],
                                    "type": "boolean"
                                }
                            }
                        },
                        "playbook": {
                            "additionalProperties": false,
                            "properties": {
                                "help": {
                                    "default": false,
                                    "description": "Help options for ansible-playbook command in stdout mode",
                                    "enum": [
                                        true,
                                        false
                                    ],
                                    "type": "boolean"
                                },
                                "path": {
                                    "description": "Specify the playbook name",
                                    "type": "string"
                                }
                            }
                        }
                    },
                    "type": "object"
                },
                "ansible-builder": {
                    "additionalProperties": false,
                    "properties": {
                        "help": {
                            "default": false,
                            "description": "Help options for ansible-builder command in stdout mode",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "workdir": {
                            "default": ".",
                            "description": "Specify the path that contains ansible-builder manifest files",
                            "type": "string"
                        }
                    },
                    "type": "object"
                },
                "ansible-lint": {
                    "additionalProperties": false,
                    "properties": {
                        "config": {
                            "description": "Specify the path to the ansible-lint configuration file",
                            "type": "string"
                        },
                        "lintables": {
                            "description": "Path to files on which to run ansible-lint",
                            "type": "string"
                        }
                    },
                    "type": "object"
                },
                "ansible-runner": {
                    "additionalProperties": false,
                    "properties": {
                        "artifact-dir": {
                            "description": "The directory path to store artifacts generated by ansible-runner",
                            "type": "string"
                        },
                        "job-events": {
                            "default": false,
                            "description": "Write ansible-runner job_events in the artifact directory",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "rotate-artifacts-count": {
                            "description": "Keep ansible-runner artifact directories, for last n runs, if set to 0 artifact directories won't be deleted",
                            "type": "integer"
                        },
                        "timeout": {
                            "description": "The timeout value after which ansible-runner will forcefully stop the execution",
                            "type": "integer"
                        }
                    },
                    "type": "object"
                },
                "app": {
                    "default": "welcome",
                    "description": "Subcommands",
                    "enum": [
                        "builder",
                        "collections",
                        "config",
                        "doc",
                        "exec",
                        "images",
                        "inventory",
                        "lint",
                        "replay",
                        "run",
                        "settings",
                        "welcome"
                    ],
                    "type": "string"
                },
                "collection-doc-cache-path": {
                    "default": "~/.cache/ansible-navigator/collection_doc_cache.db",
                    "description": "The path to collection doc cache",
                    "type": "string"
                },
                "color": {
                    "additionalProperties": false,
                    "properties": {
                        "enable": {
                            "default": true,
                            "description": "Enable the use of color for mode interactive and stdout",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "osc4": {
                            "default": true,
                            "description": "Enable or disable terminal color changing support with OSC 4",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        }
                    },
                    "type": "object"
                },
                "editor": {
                    "additionalProperties": false,
                    "properties": {
                        "command": {
                            "default": "vi +{line_number} {filename}",
                            "description": "Specify the editor command",
                            "type": "string"
                        },
                        "console": {
                            "default": true,
                            "description": "Specify if the editor is console based",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        }
                    },
                    "type": "object"
                },
                "enable-prompts": {
                    "default": false,
                    "description": "Enable prompts for password and in playbooks. This will set mode to stdout and disable playbook artifact creation",
                    "enum": [
                        true,
                        false
                    ],
                    "type": "boolean"
                },
                "exec": {
                    "additionalProperties": false,
                    "properties": {
                        "command": {
                            "default": "/bin/bash",
                            "description": "Specify the command to run within the execution environment",
                            "type": "string"
                        },
                        "shell": {
                            "default": true,
                            "description": "Specify the exec command should be run in a shell",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        }
                    },
                    "type": "object"
                },
                "execution-environment": {
                    "additionalProperties": false,
                    "properties": {
                        "container-engine": {
                            "default": "auto",
                            "description": "Specify the container engine (auto=podman then docker)",
                            "enum": [
                                "auto",
                                "podman",
                                "docker"
                            ],
                            "type": "string"
                        },
                        "container-options": {
                            "description": "Extra parameters passed to the container engine command",
                            "items": {
                                "type": "string"
                            },
                            "type": "array"
                        },
                        "enabled": {
                            "default": true,
                            "description": "Enable or disable the use of an execution environment",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "environment-variables": {
                            "additionalProperties": false,
                            "properties": {
                                "pass": {
                                    "description": "Specify an existing environment variable to be passed through to and set within the execution environment (--penv MY_VAR)",
                                    "items": {
                                        "type": "string"
                                    },
                                    "type": "array"
                                },
                                "set": {
                                    "description": "Specify an environment variable and a value to be set within the execution environment (--senv MY_VAR=42)",
                                    "type": "object"
                                }
                            },
                            "type": "object"
                        },
                        "image": {
                            "description": "Specify the name of the execution environment image",
                            "type": "string"
                        },
                        "pull": {
                            "additionalProperties": false,
                            "properties": {
                                "arguments": {
                                    "description": "Specify any additional parameters that should be added to the pull command when pulling an execution environment from a container registry. e.g. --pa='--tls-verify=false'",
                                    "items": {
                                        "type": "string"
                                    },
                                    "type": "array"
                                },
                                "policy": {
                                    "default": "tag",
                                    "description": "Specify the image pull policy always:Always pull the image, missing:Pull if not locally available, never:Never pull the image, tag:if the image tag is 'latest', always pull the image, otherwise pull if not locally available",
                                    "enum": [
                                        "always",
                                        "missing",
                                        "never",
                                        "tag"
                                    ],
                                    "type": "string"
                                }
                            }
                        },
                        "volume-mounts": {
                            "additionalProperties": false,
                            "description": "Specify volume to be bind mounted within an execution environment (--eev /home/user/test:/home/user/test:Z)",
                            "items": {
                                "additionalProperties": false,
                                "properties": {
                                    "dest": {
                                        "type": "string"
                                    },
                                    "options": {
                                        "type": "string"
                                    },
                                    "src": {
                                        "type": "string"
                                    }
                                },
                                "required": [
                                    "src",
                                    "dest"
                                ],
                                "type": "object"
                            },
                            "type": "array"
                        }
                    },
                    "type": "object"
                },
                "format": {
                    "default": "yaml",
                    "description": "Specify the format for stdout output.",
                    "enum": [
                        "json",
                        "yaml"
                    ],
                    "type": "string"
                },
                "images": {
                    "additionalProperties": false,
                    "properties": {
                        "details": {
                            "default": [
                                "everything"
                            ],
                            "description": "Provide detailed information about the selected execution environment image",
                            "items": {
                                "enum": [
                                    "ansible_collections",
                                    "ansible_version",
                                    "everything",
                                    "os_release",
                                    "python_packages",
                                    "python_version",
                                    "redhat_release",
                                    "system_packages"
                                ],
                                "type": "string"
                            },
                            "type": "array"
                        }
                    }
                },
                "inventory-columns": {
                    "description": "Specify a host attribute to show in the inventory view",
                    "items": {
                        "type": "string"
                    },
                    "type": "array"
                },
                "logging": {
                    "additionalProperties": false,
                    "properties": {
                        "append": {
                            "default": true,
                            "description": "Specify if log messages should be appended to an existing log file, otherwise a new log file will be created per session",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "file": {
                            "default": "./ansible-navigator.log",
                            "description": "Specify the full path for the ansible-navigator log file",
                            "type": "string"
                        },
                        "level": {
                            "default": "warning",
                            "description": "Specify the ansible-navigator log level",
                            "enum": [
                                "debug",
                                "info",
                                "warning",
                                "error",
                                "critical"
                            ],
                            "type": "string"
                        }
                    },
                    "type": "object"
                },
                "mode": {
                    "default": "interactive",
                    "description": "Specify the user-interface mode",
                    "enum": [
                        "stdout",
                        "interactive"
                    ],
                    "type": "string"
                },
                "playbook-artifact": {
                    "additionalProperties": false,
                    "properties": {
                        "enable": {
                            "default": true,
                            "description": "Enable or disable the creation of artifacts for completed playbooks. Note: not compatible with '--mode stdout' when playbooks require user input",
                            "enum": [
                                true,
                                false
                            ],
                            "type": "boolean"
                        },
                        "replay": {
                            "description": "Specify the path for the playbook artifact to replay",
                            "type": "string"
                        },
                        "save-as": {
                            "default": "{playbook_dir}/{playbook_name}-artifact-{time_stamp}.json",
                            "description": "Specify the name for artifacts created from completed playbooks. The following placeholders are available: {playbook_dir}, {playbook_name}, {playbook_status}, and {time_stamp}",
                            "type": "string"
                        }
                    },
                    "type": "object"
                },
                "settings": {
                    "additionalProperties": false,
                    "properties": {
                        "effective": {
                            "default": false,
                            "description": "Show the effective settings. Defaults, CLI parameters, environment variables, and the settings file will be combined",
                            "type": "boolean"
                        },
                        "sample": {
                            "default": false,
                            "description": "Generate a sample settings file",
                            "type": "boolean"
                        },
                        "schema": {
                            "default": "json",
                            "description": "Generate a schema for the settings file ('json'= draft-07 JSON Schema)",
                            "enum": [
                                "json"
                            ],
                            "type": "string"
                        },
                        "sources": {
                            "default": false,
                            "description": "Show the source of each current settings entry",
                            "type": "boolean"
                        }
                    }
                },
                "time-zone": {
                    "default": "UTC",
                    "description": "Specify the IANA time zone to use or 'local' to use the system time zone",
                    "type": "string"
                }
            }
        }
    },
    "required": [
        "ansible-navigator"
    ],
    "title": "ansible-navigator settings v3",
    "type": "object",
    "version": "3"
}