-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopenapi.yaml
More file actions
833 lines (793 loc) · 20.4 KB
/
Copy pathopenapi.yaml
File metadata and controls
833 lines (793 loc) · 20.4 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
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
openapi: 3.1.0
info:
title: Druid CLI
version: 0.1.0
description: |
Druid CLI launches and manages container-backed scroll applications, like
game servers, databases, and web servers.
contact: {}
servers:
- url: /
description: Druid CLI API
tags:
- name: scroll
description: Scroll management and command execution
- name: logs
description: Log streaming and retrieval
- name: queue
description: Command queue management
- name: websocket
description: WebSocket connections and tokens
- name: port
description: Port information and status
- name: health
description: Health checks and status
- name: runtime
description: Multi-scroll runtime management
- name: daemon
description: Daemon lifecycle management
- name: watch
description: File watching and development mode
- name: annotations
description: Annotation file access
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: JWT token from identity provider
tokenAuth:
type: apiKey
in: query
name: token
description: Short-lived query token for WebSocket connections
schemas:
HealthResponse:
type: object
required:
- mode
properties:
mode:
type: string
description: Current health status mode
example: "ok"
progress:
type: number
format: float
minimum: 0
maximum: 100
description: Progress percentage for loading operations
start_date:
type: string
format: date-time
nullable: true
description: When the daemon started
CreateScrollRequest:
type: object
required:
- artifact
properties:
id:
type: string
description: Deprecated alias for name. Optional stable runtime id/name. If omitted, the daemon generates an id.
example: jobs
name:
type: string
description: Optional stable runtime id/name. If omitted, the daemon generates an id; the display name still comes from scroll.yaml.
example: jobs
artifact:
type: string
description: OCI artifact reference or local scroll path
example: artifacts.druid.gg/test/test:test
owner_id:
type: string
description: Runtime owner id used for customer-facing route authorization.
namespace:
type: string
description: Kubernetes namespace for runtime resources. Ignored by non-Kubernetes backends.
registry_credentials:
type: array
items:
$ref: '#/components/schemas/RegistryCredential'
EnsureScrollRequest:
type: object
required:
- artifact
properties:
id:
type: string
name:
type: string
artifact:
type: string
artifact_digest:
type: string
owner_id:
type: string
description: Runtime owner id used for customer-facing route authorization.
namespace:
type: string
description: Kubernetes namespace for runtime resources. Ignored by non-Kubernetes backends.
registry_credentials:
type: array
items:
$ref: '#/components/schemas/RegistryCredential'
RegistryCredential:
type: object
required:
- host
- username
- password
properties:
host:
type: string
username:
type: string
password:
type: string
RuntimeRoutingTarget:
type: object
required:
- name
- procedure
- port_name
- port
- protocol
- service_name
- service_port
properties:
name:
type: string
procedure:
type: string
port_name:
type: string
port:
type: integer
protocol:
type: string
namespace:
type: string
service_name:
type: string
service_port:
type: integer
selector:
type: object
additionalProperties:
type: string
RuntimeRouteAssignment:
type: object
properties:
name:
type: string
port_name:
type: string
host:
type: string
external_ip:
type: string
public_port:
type: integer
url:
type: string
protocol:
type: string
ApplyRoutingRequest:
type: object
required:
- assignments
properties:
assignments:
type: array
items:
$ref: '#/components/schemas/RuntimeRouteAssignment'
UpdateScrollRequest:
type: object
properties:
artifact:
type: string
description: Optional target artifact. If omitted, the daemon refreshes the runtime's current artifact.
registry_credentials:
type: array
items:
$ref: '#/components/schemas/RegistryCredential'
RuntimeArtifactOperationRequest:
type: object
required:
- artifact
properties:
artifact:
type: string
restart:
type: boolean
registry_credentials:
type: array
items:
$ref: '#/components/schemas/RegistryCredential'
default: false
PublishUIPackageRequest:
type: object
properties:
path:
type: string
description: Optional scroll-root-relative .wasm path. Defaults to private/dist/app.wasm or public/dist/app.wasm.
RuntimeUIPackage:
type: object
required:
- url
- path
- sha256
- updated_at
properties:
url:
type: string
path:
type: string
sha256:
type: string
updated_at:
type: string
format: date-time
RuntimeUIPackages:
type: object
additionalProperties:
$ref: '#/components/schemas/RuntimeUIPackage'
LockStatus:
type: object
required:
- status
- last_status_change
properties:
status:
type: string
enum: [running, done, error, waiting]
exit_code:
type: integer
nullable: true
last_status_change:
type: integer
format: int64
ProcedureStatusMap:
type: object
additionalProperties:
type: object
additionalProperties:
$ref: '#/components/schemas/LockStatus'
ScrollLogMap:
type: object
additionalProperties:
type: array
items:
type: string
RuntimeScroll:
type: object
required:
- id
- artifact
- root
- scroll_name
- status
- created_at
- updated_at
properties:
id:
type: string
owner_id:
type: string
artifact:
type: string
root:
type: string
scroll_name:
type: string
status:
type: string
enum: [created, running, stopped, error, deleted]
last_error:
type: string
routing:
type: array
items:
$ref: '#/components/schemas/RuntimeRouteAssignment'
ui_packages:
$ref: '#/components/schemas/RuntimeUIPackages'
created_at:
type: string
format: date-time
updated_at:
type: string
format: date-time
procedures:
$ref: '#/components/schemas/ProcedureStatusMap'
DeletedScroll:
type: object
required:
- id
- status
properties:
id:
type: string
status:
type: string
example: deleted
RuntimePortStatus:
type: object
required:
- name
- procedure
- port
- protocol
- bound
- traffic
- source
properties:
name:
type: string
procedure:
type: string
port:
type: integer
protocol:
type: string
bound:
type: boolean
host_ip:
type: string
host_port:
type: integer
traffic:
type: boolean
traffic_bytes:
type: integer
format: int64
rx_bytes:
type: integer
format: int64
tx_bytes:
type: integer
format: int64
keepAliveTraffic:
type: string
traffic_window:
type: string
traffic_ok:
type: boolean
last_activity_at:
type: string
format: date-time
source:
type: string
paths:
# Runtime Scroll Endpoints
/api/v1/scrolls:
get:
operationId: listScrolls
summary: List runtime scrolls
tags: [runtime, daemon]
responses:
'200':
description: Runtime scrolls
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RuntimeScroll'
post:
operationId: createScroll
summary: Create runtime scroll
tags: [runtime, daemon]
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateScrollRequest'
responses:
'201':
description: Runtime scroll created
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/ensure:
post:
operationId: ensureScroll
summary: Ensure runtime scroll exists and optionally starts
tags: [runtime, daemon]
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EnsureScrollRequest'
responses:
'200':
description: Runtime scroll ensured
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}:
get:
operationId: getScroll
summary: Get runtime scroll
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
'404':
description: Runtime scroll not found
delete:
operationId: deleteScroll
summary: Delete runtime scroll
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Runtime scroll deleted
content:
application/json:
schema:
$ref: '#/components/schemas/DeletedScroll'
'404':
description: Runtime scroll not found
/api/v1/scrolls/{id}/start:
post:
operationId: startScroll
summary: Start runtime scroll
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Started runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}/stop:
post:
operationId: stopScroll
summary: Stop runtime scroll workloads while preserving data
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Stopped runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}/update:
post:
operationId: updateScroll
summary: Update runtime scroll files and state
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: false
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateScrollRequest'
responses:
'200':
description: Updated runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
'404':
description: Runtime scroll not found
/api/v1/scrolls/{id}/commands/{command}:
post:
operationId: runScrollCommand
summary: Run runtime scroll command
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: command
in: path
required: true
schema:
type: string
responses:
'200':
description: Updated runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
'404':
description: Runtime scroll not found
/api/v1/scrolls/{id}/config:
get:
operationId: getScrollConfig
summary: Get parsed scroll config
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Parsed scroll config
content:
application/json:
schema:
type: object
/api/v1/scrolls/{id}/queue:
get:
operationId: getScrollQueue
summary: Get runtime queue state
tags: [queue, runtime]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Queue state
content:
application/json:
schema:
$ref: '#/components/schemas/ProcedureStatusMap'
/api/v1/scrolls/{id}/consoles:
get:
operationId: getScrollConsoles
summary: Get scroll-scoped consoles
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Consoles keyed by procedure
content:
application/json:
schema:
type: object
additionalProperties: true
/api/v1/scrolls/{id}/logs:
get:
operationId: getScrollLogs
summary: Get scroll-scoped logs
tags: [logs, runtime]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Logs keyed by procedure
content:
application/json:
schema:
$ref: '#/components/schemas/ScrollLogMap'
/api/v1/scrolls/{id}/ports:
get:
operationId: getScrollPorts
summary: Get runtime scroll port status
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Runtime scroll port status
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RuntimePortStatus'
'404':
description: Runtime scroll not found
/api/v1/scrolls/{id}/routing/targets:
get:
operationId: getScrollRoutingTargets
summary: Get stable backend routing targets
tags: [runtime, port]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Routing targets
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/RuntimeRoutingTarget'
/api/v1/scrolls/{id}/routing:
post:
operationId: applyScrollRouting
summary: Persist operator-assigned public routing
tags: [runtime, port]
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ApplyRoutingRequest'
responses:
'200':
description: Updated runtime scroll
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}/ui/packages:
get:
operationId: getScrollUIPackages
summary: Get published UI package URLs
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: Published UI packages by scope
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeUIPackages'
/api/v1/scrolls/{id}/ui/packages/{scope}/publish:
post:
operationId: publishScrollUIPackage
summary: Publish an already-built Druid UI WASM package
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: scope
in: path
required: true
schema:
type: string
enum: [private, public]
requestBody:
required: false
content:
application/json:
schema:
$ref: '#/components/schemas/PublishUIPackageRequest'
responses:
'200':
description: Runtime scroll with updated UI package metadata
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}/backup:
post:
operationId: backupScroll
summary: Execute runtime backup
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeArtifactOperationRequest'
responses:
'200':
description: Backup completed
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
/api/v1/scrolls/{id}/restore:
post:
operationId: restoreScroll
summary: Execute runtime restore
tags: [runtime, daemon]
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeArtifactOperationRequest'
responses:
'200':
description: Restore completed
content:
application/json:
schema:
$ref: '#/components/schemas/RuntimeScroll'
# Health Endpoint
/api/v1/health:
get:
operationId: getHealthAuth
summary: Get health status
description: Get daemon health status
tags: [health, daemon]
responses:
'200':
description: Healthy
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'
'503':
description: Service unavailable
content:
application/json:
schema:
$ref: '#/components/schemas/HealthResponse'