File: clusters.inc

package info (click to toggle)
magnum 21.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,976 kB
  • sloc: python: 33,785; sh: 16,800; makefile: 75
file content (385 lines) | stat: -rw-r--r-- 6,809 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
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
.. -*- rst -*-

================
 Manage Cluster
================

Lists, creates, shows details for, updates, and deletes Cluster.

Create new cluster
==================

.. rest_method:: POST /v1/clusters

Create new cluster based on cluster template.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 202

.. rest_status_code:: error status.yaml

   - 400
   - 401
   - 403
   - 404

Request
-------

.. rest_parameters:: parameters.yaml

  - name: name
  - discovery_url: discovery_url
  - master_count: master_count
  - cluster_template_id: clustertemplate_id
  - node_count: node_count
  - create_timeout: create_timeout
  - keypair: keypair_id
  - master_flavor_id: master_flavor_id
  - labels: labels
  - flavor_id: flavor_id
  - fixed_subnet: fixed_subnet
  - fixed_network: fixed_network
  - floating_ip_enabled: floating_ip_enabled_cluster
  - master_lb_enabled: master_lb_enabled_cluster

.. note::

   Request for creating cluster is asynchronous from Newton.

Request Example
----------------

.. literalinclude:: samples/cluster-create-req.json
   :language: javascript

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - uuid: cluster_id

Response Example
----------------

.. literalinclude:: samples/cluster-create-resp.json
   :language: javascript

List all clusters
=================

.. rest_method:: GET /v1/clusters

List all clusters in Magnum.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 200

.. rest_status_code:: error status.yaml

   - 401
   - 403

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - clusters: cluster_list
  - status: status
  - uuid: cluster_id
  - links: links
  - stack_id: stack_id
  - keypair: keypair_id
  - master_count: master_count
  - cluster_template_id: clustertemplate_id
  - node_count: node_count
  - create_timeout: create_timeout
  - name: name

Response Example
----------------

.. literalinclude:: samples/cluster-get-all-resp.json
   :language: javascript

Show details of a cluster
=========================

.. rest_method:: GET /v1/clusters/{cluster_ident}

Get all information of a cluster in Magnum.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 200

.. rest_status_code:: error status.yaml

   - 401
   - 403
   - 404

Request
-------

.. rest_parameters:: parameters.yaml

  - cluster_ident: cluster_ident

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - status: status
  - uuid: cluster_id
  - links: links
  - stack_id: stack_id
  - created_at: created_at
  - api_address: api_address
  - discovery_url: discovery_url
  - updated_at: updated_at
  - master_count: master_count
  - coe_version: coe_version
  - keypair: keypair_id
  - cluster_template_id: clustertemplate_id
  - master_addresses: master_addresses
  - node_count: node_count
  - node_addresses: node_addresses
  - status_reason: status_reason
  - create_timeout: create_timeout
  - floating_ip_enabled: floating_ip_enabled_cluster
  - master_lb_enabled: master_lb_enabled_cluster
  - name: name

Response Example
----------------

.. literalinclude:: samples/cluster-get-one-resp.json
   :language: javascript

Delete a cluster
====================

.. rest_method:: DELETE /v1/clusters/{cluster_ident}

Delete a cluster.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 204

.. rest_status_code:: error status.yaml

   - 401
   - 403
   - 404
   - 409

Request
-------

.. rest_parameters:: parameters.yaml

  - cluster_ident: cluster_ident

Response
--------

This request does not return anything in the response body.

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id

Update information of cluster
=============================

.. rest_method:: PATCH /v1/clusters/{cluster_ident}

Update information of one cluster attributes using operations
including: ``add``, ``replace`` or ``remove``. The attributes to ``add`` and
``replace`` in the form of ``key=value`` while ``remove`` only needs the keys.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 202

.. rest_status_code:: error status.yaml

   - 400
   - 401
   - 403
   - 404

Request
-------

.. rest_parameters:: parameters.yaml

  - cluster_ident: cluster_ident
  - path: path
  - value: value
  - op: op

.. note::

   Request for updating cluster is asynchronous from Newton.
   Currently only attribute ``node_count`` are supported for operation
   ``replace`` and ``remove``.

Request Example
----------------

.. literalinclude:: samples/cluster-update-req.json
   :language: javascript

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - uuid: cluster_id

Response Example
----------------

.. literalinclude:: samples/cluster-create-resp.json
   :language: javascript


Resize a cluster
================

.. rest_method:: POST /v1/clusters/{cluster_ident}/actions/resize

Resize a cluster.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 202

.. rest_status_code:: error status.yaml

   - 401
   - 403
   - 404
   - 409

Request
-------

.. rest_parameters:: parameters.yaml

  - cluster_ident: cluster_ident
  - node_count: node_count
  - nodes_to_remove: nodes_to_remove
  - nodegroup: nodegroup

.. note::

   The nodegroup is just a placeholder for future. It hasn't been supported
   in Magnum now.

Request Example
----------------

.. literalinclude:: samples/cluster-resize-req.json
   :language: javascript

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - uuid: cluster_id

Response Example
----------------

.. literalinclude:: samples/cluster-resize-resp.json
   :language: javascript


Upgrade a cluster
=================

.. rest_method:: POST /v1/clusters/{cluster_ident}/actions/upgrade

Resize a cluster.

Response Codes
--------------

.. rest_status_code:: success status.yaml

   - 202

.. rest_status_code:: error status.yaml

   - 401
   - 403
   - 404
   - 409

Request
-------

.. rest_parameters:: parameters.yaml

  - cluster_ident: cluster_ident
  - cluster_template: clustertemplate_id
  - max_batch_size: max_batch_size
  - nodegroup: nodegroup

.. note::

   The nodegroup is just a placeholder for future. It hasn't been supported
   in Magnum now.

Request Example
----------------

.. literalinclude:: samples/cluster-upgrade-req.json
   :language: javascript

Response
--------

.. rest_parameters:: parameters.yaml

  - X-Openstack-Request-Id: request_id
  - uuid: cluster_id

Response Example
----------------

.. literalinclude:: samples/cluster-upgrade-resp.json
   :language: javascript