-
Notifications
You must be signed in to change notification settings - Fork 5
/
oapi.yaml
1320 lines (1320 loc) · 39.6 KB
/
oapi.yaml
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
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Please run `make openapi-codegen` after modifying this file
openapi: 3.0.0
info:
title: Paasta API
version: 1.0.0
servers:
- url: "{scheme}://{host}/{basePath}"
variables:
basePath: {default: v1}
host: {default: localhost}
scheme: {default: http, enum: [http, https]}
tags:
- description: Information about a paasta service.
name: service
components:
schemas:
AutoscalerCountMsg:
description: Specification for autoscaler count endpoints
properties:
calculated_instances:
type: integer
desired_instances:
type: integer
status:
type: string
type: object
AdhocLaunchHistory:
description: A single run
properties:
framework_id:
description: framework id
type: string
launch_time:
description: when the job was launched
type: string
run_id:
description: id of the single run
type: string
type: object
DeployQueue:
description: Current state of the deployd queue
properties:
available_service_instances:
description: Service instances that are ready to be acted on by deployd
items:
$ref: '#/components/schemas/DeployQueueServiceInstance'
type: array
unavailable_service_instances:
description: Service instances that deployd is waiting to act on
items:
$ref: '#/components/schemas/DeployQueueServiceInstance'
type: array
type: object
DeployQueueServiceInstance:
description: An instance of a service in the deploy queue
properties:
bounce_by:
description: Desired timestamp by which the service instance should be bounced
format: float
type: number
bounce_start_time:
description: Timestamp at which service instance was first added to the
queue
format: float
type: number
enqueue_time:
description: Timestamp at which the service instance was last added to the
queue
format: float
type: number
failures:
description: Number of times deployment actions have failed on this service
instance
format: int32
type: integer
instance:
description: Name of the instance of the service
type: string
processed_count:
description: Number of times any deployment action has been taken on this
service instance
format: int32
type: integer
service:
description: Name of the service
type: string
wait_until:
description: Timestamp before which no action should be taken on this service
instance
format: float
type: number
watcher:
description: The process that enqueued the task
type: string
type: object
EnvoyBackend:
properties:
address:
description: Address of the host on which the backend is running
type: string
eds_health_status:
description: Status of the backend in Envoy as reported by the EDS
type: string
has_associated_task:
description: Whether this backend has an associated task running
type: boolean
hostname:
description: Name of the host on which the backend is running
type: string
port_value:
description: Port number on which the backend responds
format: int32
type: integer
weight:
description: The weight of this backend in the cluster
format: int32
type: integer
type: object
EnvoyLocation:
properties:
backends:
description: Envoy backends running in this location
items:
$ref: '#/components/schemas/EnvoyBackend'
type: array
is_proxied_through_casper:
description: Whether this backend is proxied through Casper
type: boolean
name:
description: Name of the location
type: string
running_backends_count:
description: Number of running backends for the service in this location
format: int32
type: integer
type: object
EnvoyStatus:
properties:
expected_backends_per_location:
description: Number of backends expected to be present in each location
format: int32
type: integer
locations:
description: Locations the service is deployed
items:
$ref: '#/components/schemas/EnvoyLocation'
type: array
registration:
description: Registration name of the service in Smartstack
type: string
type: object
FloatAndError:
properties:
error_message:
type: string
value:
format: float
type: number
type: object
HPAMetric:
properties:
current_value:
description: setpoint/target_value as specified in yelpsoa_configs
type: string
name:
description: name of the metric
type: string
target_value:
description: setpoint/target_value as specified in yelpsoa_configs
type: string
type: object
InstanceDelay:
type: object
InstanceMetadataKafkaCluster:
description: Kafka instance metadata
type: object
InstanceSpecKafkaCluster:
description: Kafka instance spec
type: object
InstanceStatus:
properties:
adhoc:
$ref: '#/components/schemas/InstanceStatusAdhoc'
description: Adhoc instance status
flink:
description: Nullable Flink instance status and metadata
properties:
metadata:
$ref: '#/components/schemas/InstanceStatusFlinkMetadata'
status:
$ref: '#/components/schemas/InstanceStatusFlinkStatus'
type: object
git_sha:
description: Git sha of a service
type: string
instance:
description: Instance name
type: string
kafkacluster:
description: Nullable KafkaCluster instance status and metadata
properties:
metadata:
$ref: '#/components/schemas/InstanceMetadataKafkaCluster'
status:
$ref: '#/components/schemas/InstanceStatusKafkaCluster'
type: object
kubernetes:
$ref: '#/components/schemas/InstanceStatusKubernetes'
description: Kubernetes instance status
marathon:
$ref: '#/components/schemas/InstanceStatusMarathon'
description: Marathon instance status
service:
description: Service name
type: string
tron:
$ref: '#/components/schemas/InstanceStatusTron'
description: Tron instance status
type: object
InstanceStatusAdhoc:
description: List of runs associated with job
items:
$ref: '#/components/schemas/AdhocLaunchHistory'
type: array
InstanceStatusFlinkMetadata:
description: Flink instance metadata
type: object
InstanceStatusFlinkStatus:
description: Flink instance status
type: object
InstanceStatusKafkaCluster:
description: Kafka instance status
type: object
InstanceStatusKubernetes:
properties:
active_shas:
type: array
description: List of git/config SHAs running.
items:
type: array
items:
type: string
nullable: true
minItems: 2
maxItems: 2
app_count:
description: The number of different running versions of the same service
(0 for stopped, 1 for running and 1+ for bouncing)
format: int32
type: integer
app_id:
description: ID of the desired version of a service instance
type: string
autoscaling_status:
description: HPA associated to this app
properties:
desired_replicas:
description: desired number of _instances as calculated by HPA
type: integer
last_scale_time:
description: timestamp of last autoscale
type: string
max_instances:
description: min_instances as specified in yelpsoa_configs
type: integer
metrics:
description: Current metrics
items:
$ref: '#/components/schemas/HPAMetric'
type: array
min_instances:
description: min_instances as specified in yelpsoa_configs
type: integer
type: object
backoff_seconds:
description: backoff in seconds before launching the next task
format: int32
type: integer
bounce_method:
description: Method to transit between new and old versions of a service
enum:
- brutal
- upthendown
- downthenup
- crossover
type: string
create_timestamp:
description: Unix timestamp when this app was created
format: float
type: number
deploy_status:
description: Deploy status of a Kubernetes service
enum:
- Running
- Deploying
- Stopped
- Delayed
- Waiting
- NotRunning
type: string
deploy_status_message:
description: Reason for the deploy status
type: string
desired_state:
description: Desired state of a service, for Kubernetes
enum:
- start
- stop
type: string
error_message:
description: Error message when a kubernetes object (Deployment/Statefulset)
cannot be found
type: string
expected_instance_count:
description: The number of desired instances of the service
format: int32
type: integer
namespace:
description: The namespace this app is running
type: string
pods:
description: Pods associated to this app
items:
$ref: '#/components/schemas/KubernetesPod'
type: array
replicasets:
description: ReplicaSets associated to this app
items:
$ref: '#/components/schemas/KubernetesReplicaSet'
type: array
running_instance_count:
description: The number of actual running instances of the service
format: int32
type: integer
smartstack:
$ref: '#/components/schemas/SmartstackStatus'
description: Status of the service in smartstack
envoy:
$ref: '#/components/schemas/EnvoyStatus'
description: Status of the service in Envoy
evicted_count:
description: Number of pods with status reason "Evicted"
type: integer
format: int32
required:
- desired_state
- app_count
- bounce_method
type: object
InstanceStatusMarathon:
properties:
active_shas:
type: array
description: List of git/config SHAs running.
items:
type: array
items:
type: string
nullable: true
minItems: 2
maxItems: 2
app_count:
description: The number of different running versions of the same service
(0 for stopped, 1 for running and 1+ for bouncing)
format: int32
type: integer
app_statuses:
description: Statuses of each app of the service
items:
$ref: '#/components/schemas/MarathonAppStatus'
type: array
autoscaling_info:
$ref: '#/components/schemas/MarathonAutoscalingInfo'
description: Autoscaling information for the service
backoff_seconds:
description: backoff in seconds before launching the next task
format: int32
type: integer
bounce_method:
description: Method to transit between new and old versions of a service
enum:
- brutal
- upthendown
- downthenup
- crossover
type: string
deploy_status:
description: Deploy status of a marathon service
enum:
- Running
- Deploying
- Stopped
- Delayed
- Waiting
- Waiting for bounce
- NotRunning
type: string
desired_app_id:
description: ID of the desired version of a service instance
type: string
app_id:
description: ID of the current version of a service instance
type: string
desired_state:
description: Desired state of a service, for Marathon
enum:
- start
- stop
type: string
envoy:
$ref: '#/components/schemas/EnvoyStatus'
description: Status of the service in Envoy
error_message:
description: Error message when a marathon job ID cannot be found
type: string
expected_instance_count:
description: The number of desired instances of the service
format: int32
type: integer
mesos:
$ref: '#/components/schemas/MarathonMesosStatus'
description: Status of the service in Mesos
running_instance_count:
description: The number of actual running instances of the service
format: int32
type: integer
smartstack:
$ref: '#/components/schemas/SmartstackStatus'
description: Status of the service in smartstack
required:
- desired_state
- app_count
- bounce_method
type: object
InstanceStatusTron:
properties:
action_command:
description: The command of the action
type: string
action_name:
description: The name of the action
type: string
action_raw_command:
description: The raw command of the action
type: string
action_start_time:
description: The start time of the action
type: string
action_state:
description: The state of the action
type: string
action_stderr:
description: The stderr command of the action
type: string
action_stdout:
description: The stdout command of the action
type: string
job_name:
description: The name of this job
type: string
job_schedule:
description: The job schedule of the job
type: string
job_status:
description: The status of the job
type: string
job_url:
description: The dashboard url of the job
type: string
required:
- job_name
- job_url
type: object
InstanceTask:
type: object
InstanceTasks:
description: List of tasks associated with instance
items:
$ref: '#/components/schemas/InstanceTask'
type: array
IntegerAndError:
properties:
error_message:
type: string
value:
format: int32
type: integer
type: object
KubernetesContainer:
properties:
name:
description: Name of the container
type: string
tail_lines:
$ref: '#/components/schemas/TaskTailLines'
description: Stdout and stderr tail of the container
type: object
KubernetesPod:
properties:
containers:
items:
$ref: '#/components/schemas/KubernetesContainer'
description: List of containers in the pod
type: array
deployed_timestamp:
description: Time at which the pod was deployed
format: float
type: number
host:
description: name of the pod's host
nullable: true
type: string
message:
description: long message explaining the pod's state
nullable: true
type: string
name:
description: name of the pod in Kubernetes
type: string
phase:
nullable: true
description: The status of the pod
type: string
ready:
description: Whether or not the pod is ready (i.e. all containers up)
type: boolean
reason:
description: short message explaining the pod's state
nullable: true
type: string
events:
description: Kubernetes pod events
type: array
items:
$ref: '#/components/schemas/KubernetesPodEvent'
type: object
KubernetesPodEvent:
type: object
properties:
message:
type: string
timeStamp:
type: string
KubernetesReplicaSet:
properties:
create_timestamp:
description: Time at which the replicaset was created
format: float
type: number
name:
description: name of the replicaset in Kubernetes
type: string
ready_replicas:
description: number of ready replicas for the replicaset
format: int32
type: integer
replicas:
description: number of desired replicas for the replicaset
format: int32
type: integer
git_sha:
description: Git sha of a service
type: string
nullable: true
config_sha:
description: Hash of configuration of this replicaset
type: string
nullable: true
type: object
MarathonAppStatus:
properties:
backoff_seconds:
description: Backoff in seconds before launching next task
format: int32
type: integer
create_timestamp:
description: Unix timestamp when this app was created
format: float
type: number
dashboard_url:
description: Marathon dashboard URL for this app
type: string
deploy_status:
description: Deploy status of this app
type: string
tasks:
description: Tasks associated to this app
items:
$ref: '#/components/schemas/MarathonTask'
type: array
tasks_healthy:
description: Number of healthy tasks for this app
format: int32
type: integer
tasks_running:
description: Number running tasks for this app
format: int32
type: integer
tasks_staged:
description: Number of staged tasks for this app
format: int32
type: integer
tasks_total:
description: Total number of tasks for this app
format: int32
type: integer
unused_offer_reason_counts:
description: Mapping of reason offer was refused to the number of times
that type of refusal was seen
type: object
unused_offers:
type: object
type: object
MarathonAutoscalingInfo:
properties:
current_instances:
description: The number of instances of the service currently running
format: int32
type: integer
current_utilization:
description: The current utilization of the instances' allocated resources
nullable: true
format: float
type: number
max_instances:
description: The maximum number of instances that the autoscaler will scale
to
format: int32
type: integer
min_instances:
description: The minimum number of instances that the autoscaler will scale
to
format: int32
type: integer
target_instances:
description: The autoscaler's current target number of instances of this
service to run
nullable: true
format: int32
type: integer
type: object
MarathonDashboard:
additionalProperties:
$ref: '#/components/schemas/MarathonDashboardCluster'
description: A list of Marathon service, instance, and shard url for one or
more clusters
type: object
MarathonDashboardCluster:
description: List of all the MarathonDashboardItems for a cluster
items:
$ref: '#/components/schemas/MarathonDashboardItem'
type: array
MarathonDashboardItem:
description: Marathon service, instance, and shard url
properties:
instance:
description: Instance name
type: string
service:
description: Service name
type: string
shard_url:
description: Marathon Shard URL
type: string
type: object
MarathonMesosNonrunningTask:
properties:
deployed_timestamp:
description: The unix timestamp at which the task was deployed
format: float
type: number
hostname:
description: Name of the Mesos agent on which this task is running
type: string
id:
description: The ID of the task in Mesos
type: string
state:
description: The current state of the task
type: string
tail_lines:
$ref: '#/components/schemas/TaskTailLines'
description: Stdout and stderr tail of the task
type: object
MarathonMesosRunningTask:
properties:
cpu_shares:
$ref: '#/components/schemas/FloatAndError'
description: The portion of a CPU that the task can use
cpu_used_seconds:
$ref: '#/components/schemas/FloatAndError'
description: The number of seconds of CPU time the task has used
deployed_timestamp:
description: The unix timestamp at which the task was deployed
format: float
type: number
duration_seconds:
description: The duration over which the task has been running in seconds
format: int32
type: integer
hostname:
description: Name of the Mesos agent on which this task is running
type: string
id:
description: The ID of the task in Mesos
type: string
mem_limit:
$ref: '#/components/schemas/IntegerAndError'
description: The maximum amount of memory the task is allowed to use
rss:
$ref: '#/components/schemas/IntegerAndError'
description: The tasks's resident set size
tail_lines:
$ref: '#/components/schemas/TaskTailLines'
description: Stdout and stderr tail of the task
type: object
MarathonMesosStatus:
properties:
error_message:
description: Error message when Mesos tasks cannot be queried
type: string
non_running_tasks:
description: Non-running tasks associated to this service
items:
$ref: '#/components/schemas/MarathonMesosNonrunningTask'
type: array
running_task_count:
description: The number of running Mesos tasks associated to this service
format: int32
type: integer
running_tasks:
description: Currently running tasks associated to this service
items:
$ref: '#/components/schemas/MarathonMesosRunningTask'
type: array
type: object
MarathonTask:
properties:
deployed_timestamp:
description: Time at which the task was deployed
format: float
type: number
host:
description: Name of the host on which the task is running
nullable: true
type: string
id:
description: ID of the task in Mesos
type: string
is_healthy:
description: Whether Marathon thinks the task is healthy
nullable: true
type: boolean
port:
description: Port on which the task is listening
format: int32
type: integer
type: object
MetaStatus:
description: Result of `paasta metastatus` command
properties:
exit_code:
description: Exit code from `paasta metastatus` command
type: integer
output:
description: Output from `paasta metastatus` command
type: string
type: object
Resource:
items:
$ref: '#/components/schemas/ResourceItem'
type: array
ResourceItem:
properties:
cpus:
$ref: '#/components/schemas/ResourceValue'
disk:
$ref: '#/components/schemas/ResourceValue'
groupings:
type: object
mem:
$ref: '#/components/schemas/ResourceValue'
gpus:
$ref: '#/components/schemas/ResourceValue'
type: object
ResourceValue:
properties:
free:
type: number
total:
type: number
used:
type: number
type: object
SmartstackBackend:
properties:
check_code:
description: Check code reported by HAProxy
type: string
check_duration:
description: Duration in ms of the last health check performed by HAProxy
format: int32
type: integer
check_status:
description: Status of last health check of the backend
type: string
has_associated_task:
description: Whether this backend has an associated task running
type: boolean
hostname:
description: Name of the host on which the backend is running
type: string
last_change:
description: Seconds since last change in backend status
format: int32
type: integer
port:
description: Port number on which the backend responds
format: int32
type: integer
status:
description: Status of the backend in HAProxy
type: string
type: object
SmartstackLocation:
properties:
backends:
description: Smartstack backends running in this location
items:
$ref: '#/components/schemas/SmartstackBackend'
type: array
name:
description: Name of the location
type: string
running_backends_count:
description: Number of running backends for the service in this location
format: int32
type: integer
type: object
SmartstackStatus:
properties:
expected_backends_per_location:
description: Number of backends expected to be present in each location
format: int32
type: integer
locations:
description: Locations the service is deployed
items:
$ref: '#/components/schemas/SmartstackLocation'
type: array
registration:
description: Registration name of the service in Smartstack
type: string
type: object
TaskTailLines:
properties:
error_message:
description: Error message when fetching tail lines fails
type: string
stderr:
description: The requested number of lines from the task's stderr
items:
type: string
type: array
stdout:
description: The requested number of lines from the task's stdout
items:
type: string
type: array
type: object
paths:
/deploy_queue:
get:
operationId: deploy_queue
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/DeployQueue'
description: Contents of deploy queue
summary: Get deploy queue contents
/marathon_dashboard:
get:
operationId: marathon_dashboard
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/MarathonDashboard'
description: List of service instances and information on their Marathon
shard
summary: Get marathon service instances and their shards
tags:
- marathon_dashboard
/metastatus:
get:
operationId: metastatus
parameters:
- description: comma separated list of command arguments
in: query
name: cmd_args
required: true
schema:
items:
type: string
type: array
style: simple
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/MetaStatus'
description: Detailed metastatus
"500":
description: Metastatus failure
summary: Get metastatus
/resources/utilization:
get:
operationId: resources
parameters:
- description: comma separated list of keys to group by
in: query
name: groupings
required: false
schema:
items:
type: string
type: array
style: simple
- description: List of slave filters in format 'filter=attr_name:value1,value2&filter=attr2:value3,value4'.
Matches attr_name=(value1 OR value2) AND attr2=(value3 OR value4)
explode: true
in: query
name: filter
required: false
style: form
schema:
items:
pattern: (.*):(.*,)*(.*)
type: string
type: array
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/Resource'
description: Resources in the cluster, filtered and grouped by parameters
"400":
description: Poorly formated query parameters
summary: Get resources in the cluster
tags:
- resources
/service_autoscaler/pause:
delete:
operationId: delete_service_autoscaler_pause
responses:
"200":
description: Service autoscaler successfully unpaused
"500":
description: Unable to talk to zookeeper
summary: Unpause the autoscaler
get:
operationId: get_service_autoscaler_pause
responses:
"200":
content:
application/json:
schema:
type: string
description: The time until which the servcie autoscaler is paused for
"500":
description: Unable to talk to zookeeper
summary: Get autoscaling pause time
post:
operationId: update_service_autoscaler_pause
requestBody:
content:
application/json:
schema:
type: object
properties:
minutes:
type: integer
required: true
responses:
"200":
description: Service autoscaler successfully paused
"500":
description: Unable to talk to zookeeper
/services:
get:
operationId: list_services_for_cluster
responses:
"200":
content:
application/json: