File: parameters.yaml

package info (click to toggle)
ironic-inspector 12.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,040 kB
  • sloc: python: 17,441; sh: 672; makefile: 197
file content (284 lines) | stat: -rw-r--r-- 7,462 bytes parent folder | download | duplicates (4)
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
# variables in header
api-maximum-version:
  description: |
    Maximum API microversion supported by this endpoint, eg. "1.10"
  in: header
  required: true
  type: string
api-minimum-version:
  description: |
    Minimum API microversion supported by this endpoint, eg. "1.1"
  in: header
  required: true
  type: string
x-auth-token:
  description: |
    The client token being passed into Ironic Inspector API to make
    authentication.
  in: header
  required: true
  type: string
x-openstack-ironic-inspector-api-version:
  description: >
    A request SHOULD include this header to indicate to the Ironic Inspector
    API service what version the client supports. The server may transform
    the response object into compliance with the requested version, if it is
    supported, or return a 406 Not Supported error.
    If this header is not supplied, the server will default to current
    supported version in all responses.
  in: header
  required: true
  type: string

# variables in path
node_id:
  description: |
    The UUID of the Ironic node.
  in: path
  required: true
  type: string

uuid:
  description: |
    The UUID of the Ironic Inspector rule.
  in: path
  required: true
  type: string

# common variables to query strings
limit:
  description: |
    Requests a page size of items. Returns a number of items up to a limit
    value. Use the ``limit`` parameter to make an initial limited request and
    use the ID of the last-seen item from the response as the ``marker``
    parameter value in a subsequent limited request. This value cannot be
    larger than the ``api_max_limit`` option in the configuration. If it is
    higher than ``api_max_limit``, return 400 Bad Request.
  in: query
  required: false
  type: integer
manage_boot:
  description: |
    Whether the current installation of ironic-inspector can manage PXE
    booting of nodes.
  in: query
  required: false
  type: string
marker:
  description: |
    The ID of the last-seen item. Use the ``limit`` parameter to make an
    initial limited request and use the ID of the last-seen item from the
    response as the ``marker`` parameter value in a subsequent request.
  in: query
  required: false
  type: string


# variables to methods
actions:
  description: |
    List of operations that will be performed if ``conditions`` of this
    rule are fulfilled.
  in: body
  required: true
  type: array
bmc_address:
  description: |
    IP address of the node's BMC
  in: body
  required: false
  type: string
boot_interface:
  description: |
    MAC address of the NIC that the machine PXE booted from
  in: body
  required: false
  type: string
conditions:
  description: |
    List of a logic statementd or operations in rules, that can be
    evaluated as True or False.
  in: body
  required: false
  type: array
cpu:
  description: |
    CPU information containing at least keys ``count`` (CPU count) and
    ``architecture`` (CPU architecture, e.g. ``x86_64``),
  in: body
  required: true
  type: string
description:
  description: |
    Rule human-readable description.
  in: body
  required: false
  type: string
disks:
  description: |
    List of disk block devices containing at least ``name`` and ``size``
    keys. In case ``disks`` are not provided **ironic-inspector**  assumes
    that this is a disk-less node.
  in: body
  required: true
  type: array
error:
  description: |
    Error description string or ``null``;
    ``Canceled by operator`` in case introspection was aborted.
  in: body
  required: true
  type: string
finished:
  description: |
    Whether introspection has finished for this node.
  in: body
  required: true
  type: boolean
finished_at:
  description: |
    UTC ISO8601 timestamp of introspection finished or ``null``.
  in: body
  required: true
  type: string
href:
  description: |
    A bookmark link to resource object.
  in: body
  required: true
  type: string
id:
  description: |
    API microversion, eg, "1.12".
  in: body
  required: true
  type: string
interfaces:
  description: |
    List of dictionaries with interfaces info, contains following keys:

    * ``name`` interface name,

    * ``ipv4_address`` IPv4 address of the interface,

    * ``mac_address`` MAC (physical) address of the interface.

    * ``client_id`` InfiniBand Client-ID, for Ethernet is None.
  in: body
  required: true
  type: array
inventory:
  description: Dictionary with hardware inventory keys.
  in: body
  required: true
  type: object
links:
  description: |
    A list of relative links. Includes the self and
    bookmark links.
  in: body
  required: true
  type: array
logs:
  description: Base64-encoded logs from the ramdisk.
  in: body
  required: false
  type: string
memory:
  description: |
    Memory information containing at least ``physical_mb`` key,
    memory size is reported by dmidecod.
  in: body
  required: true
  type: string
name:
  description: |
    Resource name, like `introspection`, `rules`.
  in: body
  required: true
  type: string
node_uuid:
  description: Ironic node UUID.
  in: body
  required: true
  type: string
ramdisk_error:
  description: |
    An error that happened during ramdisk run, interpreted by the
    ``ramdisk_error`` processing hook.
  in: body
  required: false
  type: string
rel:
  description: |
    The relationship between the version and the href.
  in: body
  required: true
  type: string
resources:
  description: |
    A list of available API resources.
  in: body
  required: true
  type: array
root_disk:
  description: |
    Default deployment root disk as calculated by the **ironic-python-agent**
    algorithm.

    .. note::
      The default processing hook ``root_disk_selection`` may change
      ``root_disk`` based on root device hints if node specify hints via
      properties ``root_device`` key. See the `root device hints docs
      <https://docs.openstack.org/ironic/latest/install/advanced.html#specifying-the-disk-for-deployment-root-device-hints>`_.
  in: body
  required: true
  type: string
scope:
  description: |
    Scope of an introspection rule. If set, the rule is only applied to nodes
    that have matching ``inspection_scope`` property.
  in: body
  required: false
  type: string
started_at:
  description: |
    UTC ISO8601 timestamp of introspection start.
  in: body
  required: true
  type: string
state:
  description: |
    Current state of the introspection, possible values:  ``enrolling``,
    ``error``, ``finished``, ``processing``, ``reapplying``, ``starting``,
    ``waiting``. For detail information about states see
    `Inspector states <https://docs.openstack.org/ironic-inspector/latest/user/workflow.html#state-machine-diagram>`_.
  in: body
  required: true
  type: string
status:
  description: |
    The status of this API version. This can be one of:

    - ``CURRENT`` This version is up to date recent and should be prioritized over all others.

    - ``SUPPORTED`` This version is available and may not be updated in future.

    - ``DEPRECATED`` This version is still available but may be removed in future.

    - ``EXPERIMENTAL`` This version is under development and may be changed in future.
  in: body
  required: true
  type: string
version:
  description: |
    Versioning of this API response, eg. "1.12".
  in: body
  required: true
  type: string
versions:
  description: |
    Array of information about currently supported versions.
  in: body
  required: true
  type: array