summaryrefslogtreecommitdiffstats
path: root/src/ansiblelint/schemas/ansible-navigator.json
blob: be8364977b4dd6e5866a4e9eb5be650fe041c384 (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
{
  "$defs": {
    "AnsibleBuilderModel": {
      "additionalProperties": false,
      "properties": {
        "workdir": {
          "default": "/tmp/",
          "description": "Specify the path that contains ansible-builder manifest files",
          "title": "Workdir",
          "type": "string"
        }
      },
      "type": "object"
    },
    "AnsibleModel": {
      "additionalProperties": false,
      "properties": {
        "cmdline": {
          "description": "Extra parameters passed to the corresponding command",
          "title": "Cmdline",
          "type": "string"
        },
        "config": {
          "description": "Specify the path to the ansible configuration file",
          "title": "Config",
          "type": "string"
        },
        "inventories": {
          "description": "Specify an inventory file path or host list",
          "items": {
            "type": "string"
          },
          "title": "Inventories",
          "type": "array"
        },
        "playbook": {
          "description": "Specify the playbook name",
          "title": "Playbook",
          "type": "string"
        }
      },
      "title": "AnsibleModel",
      "type": "object"
    },
    "AnsibleNavigatorModel": {
      "additionalProperties": false,
      "properties": {
        "ansible": {
          "$ref": "#/$defs/AnsibleModel"
        },
        "ansible-builder": {
          "$ref": "#/$defs/AnsibleBuilderModel"
        },
        "ansible-runner": {
          "$ref": "#/$defs/AnsibleRunnerModel"
        },
        "app": {
          "default": "welcome",
          "description": "Subcommands",
          "enum": [
            "collections",
            "config",
            "doc",
            "exec",
            "images",
            "inventory",
            "replay",
            "run",
            "welcome"
          ],
          "title": "App",
          "type": "string"
        },
        "collection-doc-cache-path": {
          "default": "$HOME/.cache/ansible-navigator/collection_doc_cache.db",
          "description": "The path to collection doc cache",
          "title": "Collection-Doc-Cache-Path",
          "type": "string"
        },
        "color": {
          "$ref": "#/$defs/ColorModel"
        },
        "documentation": {
          "$ref": "#/$defs/DocumentationModel"
        },
        "editor": {
          "$ref": "#/$defs/EditorModel"
        },
        "exec": {
          "$ref": "#/$defs/ExecModel"
        },
        "execution-environment": {
          "$ref": "#/$defs/ExecutionEnvironmentModel"
        },
        "help-builder": {
          "default": false,
          "description": "Help options for ansible-builder command in stdout mode",
          "title": "Help-Builder",
          "type": "boolean"
        },
        "help-config": {
          "default": false,
          "description": "Help options for ansible-config command in stdout mode",
          "title": "Help-Config",
          "type": "boolean"
        },
        "help-doc": {
          "default": false,
          "description": "Help options for ansible-doc command in stdout mode",
          "title": "Help-Doc",
          "type": "boolean"
        },
        "help-inventory": {
          "default": false,
          "description": "Help options for ansible-inventory command in stdout mode",
          "title": "Help-Inventory",
          "type": "boolean"
        },
        "help-playbook": {
          "default": false,
          "description": "Help options for ansible-playbook command in stdout mode",
          "title": "Help-Playbook",
          "type": "boolean"
        },
        "inventory-columns": {
          "description": "Specify a host attribute to show in the inventory view",
          "items": {
            "type": "string"
          },
          "title": "Inventory-Columns",
          "type": "array"
        },
        "logging": {
          "$ref": "#/$defs/LoggingModel"
        },
        "mode": {
          "default": "interactive",
          "description": "Specify the user-interface mode",
          "enum": ["stdout", "interactive"],
          "title": "Mode",
          "type": "string"
        },
        "playbook-artifact": {
          "$ref": "#/$defs/PlaybookArtifactModel"
        }
      },
      "title": "AnsibleNavigatorModel",
      "type": "object"
    },
    "AnsibleRunnerModel": {
      "additionalProperties": false,
      "properties": {
        "artifact-dir": {
          "description": "The directory path to store artifacts generated by ansible-runner",
          "title": "Artifact-Dir",
          "type": "string"
        },
        "rotate-artifacts-count": {
          "description": "Keep ansible-runner artifact directories, for last n runs, if set to 0 artifact directories won't be deleted",
          "title": "Rotate-Artifacts-Count",
          "type": "integer"
        },
        "timeout": {
          "description": "The timeout value after which ansible-runner will force stop the execution",
          "title": "Timeout",
          "type": "integer"
        }
      },
      "title": "AnsibleRunnerModel",
      "type": "object"
    },
    "ColorModel": {
      "additionalProperties": false,
      "properties": {
        "enable": {
          "default": false,
          "description": "Enable the use of color in the display",
          "title": "Enable",
          "type": "boolean"
        },
        "osc4": {
          "default": true,
          "description": "Enable or disable terminal color changing support with OSC 4",
          "title": "Osc4",
          "type": "boolean"
        }
      },
      "title": "ColorModel",
      "type": "object"
    },
    "DocumentationModel": {
      "additionalProperties": false,
      "properties": {
        "plugin": {
          "$ref": "#/$defs/PluginModel"
        }
      },
      "title": "DocumentationModel",
      "type": "object"
    },
    "EditorModel": {
      "additionalProperties": false,
      "properties": {
        "command": {
          "default": "vi +{line_number} {filename}",
          "description": "Specify the editor command",
          "title": "Command",
          "type": "string"
        },
        "console": {
          "default": true,
          "description": "Specify if the editor is console based",
          "title": "Console",
          "type": "boolean"
        }
      },
      "title": "EditorModel",
      "type": "object"
    },
    "EnvironmentVariablesModel": {
      "additionalProperties": false,
      "properties": {
        "pass": {
          "description": "Specify an exiting environment variable to be passed through to and set within the execution environment",
          "items": {
            "type": "string"
          },
          "title": "Pass",
          "type": "array"
        },
        "set": {
          "additionalProperties": {
            "type": "string"
          },
          "description": "Specify an environment variable and a value to be set within the execution environment",
          "title": "Set",
          "type": "object"
        }
      },
      "title": "EnvironmentVariablesModel",
      "type": "object"
    },
    "ExecModel": {
      "additionalProperties": false,
      "properties": {
        "command": {
          "default": "/bin/bash",
          "description": "Specify the command to run within the execution environment",
          "title": "Command",
          "type": "string"
        },
        "shell": {
          "default": true,
          "description": "Specify the exec command should be run in a shell",
          "title": "Shell",
          "type": "boolean"
        }
      },
      "title": "ExecModel",
      "type": "object"
    },
    "ExecutionEnvironmentModel": {
      "additionalProperties": false,
      "properties": {
        "container-engine": {
          "default": "auto",
          "description": "Specify the container engine (auto=podman then docker)",
          "enum": ["auto", "podman", "docker"],
          "title": "Container-Engine",
          "type": "string"
        },
        "container-options": {
          "description": "Extra parameters passed to the container engine command",
          "items": {
            "type": "string"
          },
          "title": "Container-Options",
          "type": "array"
        },
        "enabled": {
          "default": true,
          "description": "Enable or disable the use of an execution environment",
          "title": "Enabled",
          "type": "boolean"
        },
        "environment-variables": {
          "$ref": "#/$defs/EnvironmentVariablesModel"
        },
        "image": {
          "default": "quay.io/ansible/creator-ee:v0.2.0",
          "description": "Specify the name of the execution environment image",
          "title": "Image",
          "type": "string"
        },
        "pull-policy": {
          "default": "tag",
          "description": "Specify the image pull policy.\nalways: Always pull the image\nmissing: Pull if not locally available\nnever: Never pull the image\ntag: if the image tag is 'latest', always pull the image, otherwise pull if not locally available",
          "enum": ["always", "missing", "never", "tag"],
          "title": "Pull-Policy",
          "type": "string"
        },
        "volume-mounts": {
          "description": "Specify volume to be bind mounted within an execution environment",
          "items": {
            "$ref": "#/$defs/VolumeMountsModel"
          },
          "title": "Volume-Mounts",
          "type": "array"
        }
      },
      "title": "ExecutionEnvironmentModel",
      "type": "object"
    },
    "LoggingModel": {
      "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",
          "title": "Append",
          "type": "boolean"
        },
        "file": {
          "default": "$PWD/ansible-navigator.",
          "description": "Specify the full path for the ansible-navigator log file",
          "title": "File",
          "type": "string"
        },
        "level": {
          "default": "warning",
          "description": "Specify the ansible-navigator log level",
          "enum": ["debug", "info", "warning", "error", "critical"],
          "title": "Level",
          "type": "string"
        }
      },
      "title": "LoggingModel",
      "type": "object"
    },
    "PlaybookArtifactModel": {
      "additionalProperties": false,
      "properties": {
        "enable": {
          "default": true,
          "description": "Enable or disable the creation of artifacts for completed playbooks.\nNote: not compatible with 'mode: stdout' when playbooks require user input",
          "title": "Enable",
          "type": "boolean"
        },
        "replay": {
          "description": "Specify the path for the playbook artifact to replay",
          "title": "Replay",
          "type": "string"
        },
        "save-as": {
          "default": "{playbook_dir}/{playbook_name}-artifact-{ts_utc}.json",
          "description": "Specify the name for artifacts created from completed playbooks",
          "title": "Save-As",
          "type": "string"
        }
      },
      "title": "PlaybookArtifactModel",
      "type": "object"
    },
    "PluginModel": {
      "additionalProperties": false,
      "properties": {
        "name": {
          "description": "Specify the plugin name",
          "title": "Name",
          "type": "string"
        },
        "type": {
          "default": "module",
          "description": "Specify the plugin type",
          "enum": [
            "become",
            "cache",
            "callback",
            "cliconf",
            "connection",
            "httpapi",
            "inventory",
            "lookup",
            "module",
            "netconf",
            "shell",
            "strategy",
            "vars"
          ],
          "title": "Type",
          "type": "string"
        }
      },
      "title": "PluginModel",
      "type": "object"
    },
    "VolumeMountsModel": {
      "additionalProperties": false,
      "properties": {
        "dest": {
          "title": "Dest",
          "type": "string"
        },
        "label": {
          "title": "Label",
          "type": "string"
        },
        "src": {
          "title": "Src",
          "type": "string"
        }
      },
      "required": ["src", "dest"],
      "title": "VolumeMountsModel",
      "type": "object"
    }
  },
  "$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible-navigator.json",
  "$schema": "http://json-schema.org/draft-07/schema",
  "additionalProperties": false,
  "examples": ["ansible-navigator.yml"],
  "properties": {
    "ansible-navigator": {
      "$ref": "#/$defs/AnsibleNavigatorModel"
    }
  },
  "required": ["ansible-navigator"],
  "title": "Ansible-Navigator Configuration Schema",
  "type": "object"
}