forked from oxidecomputer/omicron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap-agent.json
1633 lines (1633 loc) · 45.9 KB
/
bootstrap-agent.json
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
{
"openapi": "3.0.3",
"info": {
"title": "Bootstrap Agent API",
"description": "Per-sled API for setup and teardown",
"contact": {
"url": "https://oxide.computer",
"email": "[email protected]"
},
"version": "0.0.1"
},
"paths": {
"/baseboard": {
"get": {
"summary": "Return the baseboard identity of this sled.",
"operationId": "baseboard_get",
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Baseboard"
}
}
}
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
}
},
"/components": {
"get": {
"summary": "Provide a list of components known to the bootstrap agent.",
"description": "This API is intended to allow early boot services (such as Wicket) to query the underlying component versions installed on a sled.",
"operationId": "components_get",
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"title": "Array_of_Component",
"type": "array",
"items": {
"$ref": "#/components/schemas/Component"
}
}
}
}
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
}
},
"/rack-initialize": {
"get": {
"summary": "Get the current status of rack initialization or reset.",
"operationId": "rack_initialization_status",
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RackOperationStatus"
}
}
}
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
},
"post": {
"summary": "Initialize the rack with the provided configuration.",
"operationId": "rack_initialize",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RackInitializeRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TypedUuidForRackInitKind"
}
}
}
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
},
"delete": {
"summary": "Reset the rack to an unconfigured state.",
"operationId": "rack_reset",
"responses": {
"200": {
"description": "successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TypedUuidForRackResetKind"
}
}
}
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
}
},
"/sled-initialize": {
"delete": {
"summary": "Reset this particular sled to an unconfigured state.",
"operationId": "sled_reset",
"responses": {
"204": {
"description": "resource updated"
},
"4XX": {
"$ref": "#/components/responses/Error"
},
"5XX": {
"$ref": "#/components/responses/Error"
}
}
}
}
},
"components": {
"schemas": {
"AllowedSourceIps": {
"description": "Description of source IPs allowed to reach rack services.",
"oneOf": [
{
"description": "Allow traffic from any external IP address.",
"type": "object",
"properties": {
"allow": {
"type": "string",
"enum": [
"any"
]
}
},
"required": [
"allow"
]
},
{
"description": "Restrict access to a specific set of source IP addresses or subnets.\n\nAll others are prevented from reaching rack services.",
"type": "object",
"properties": {
"allow": {
"type": "string",
"enum": [
"list"
]
},
"ips": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IpNet"
}
}
},
"required": [
"allow",
"ips"
]
}
]
},
"Baseboard": {
"description": "Describes properties that should uniquely identify a Gimlet.",
"oneOf": [
{
"type": "object",
"properties": {
"identifier": {
"type": "string"
},
"model": {
"type": "string"
},
"revision": {
"type": "integer",
"format": "uint32",
"minimum": 0
},
"type": {
"type": "string",
"enum": [
"gimlet"
]
}
},
"required": [
"identifier",
"model",
"revision",
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"unknown"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"identifier": {
"type": "string"
},
"model": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"pc"
]
}
},
"required": [
"identifier",
"model",
"type"
]
}
]
},
"BfdMode": {
"description": "BFD connection mode.",
"type": "string",
"enum": [
"single_hop",
"multi_hop"
]
},
"BfdPeerConfig": {
"type": "object",
"properties": {
"detection_threshold": {
"type": "integer",
"format": "uint8",
"minimum": 0
},
"local": {
"nullable": true,
"type": "string",
"format": "ip"
},
"mode": {
"$ref": "#/components/schemas/BfdMode"
},
"remote": {
"type": "string",
"format": "ip"
},
"required_rx": {
"type": "integer",
"format": "uint64",
"minimum": 0
},
"switch": {
"$ref": "#/components/schemas/SwitchLocation"
}
},
"required": [
"detection_threshold",
"mode",
"remote",
"required_rx",
"switch"
]
},
"BgpConfig": {
"type": "object",
"properties": {
"asn": {
"description": "The autonomous system number for the BGP configuration.",
"type": "integer",
"format": "uint32",
"minimum": 0
},
"checker": {
"nullable": true,
"description": "Checker to apply to incoming messages.",
"default": null,
"type": "string"
},
"originate": {
"description": "The set of prefixes for the BGP router to originate.",
"type": "array",
"items": {
"$ref": "#/components/schemas/Ipv4Net"
}
},
"shaper": {
"nullable": true,
"description": "Shaper to apply to outgoing messages.",
"default": null,
"type": "string"
}
},
"required": [
"asn",
"originate"
]
},
"BgpPeerConfig": {
"type": "object",
"properties": {
"addr": {
"description": "Address of the peer.",
"type": "string",
"format": "ipv4"
},
"allowed_export": {
"description": "Define export policy for a peer.",
"default": {
"type": "no_filtering"
},
"allOf": [
{
"$ref": "#/components/schemas/ImportExportPolicy"
}
]
},
"allowed_import": {
"description": "Define import policy for a peer.",
"default": {
"type": "no_filtering"
},
"allOf": [
{
"$ref": "#/components/schemas/ImportExportPolicy"
}
]
},
"asn": {
"description": "The autonomous system number of the router the peer belongs to.",
"type": "integer",
"format": "uint32",
"minimum": 0
},
"communities": {
"description": "Include the provided communities in updates sent to the peer.",
"default": [],
"type": "array",
"items": {
"type": "integer",
"format": "uint32",
"minimum": 0
}
},
"connect_retry": {
"nullable": true,
"description": "The interval in seconds between peer connection retry attempts.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"delay_open": {
"nullable": true,
"description": "How long to delay sending open messages to a peer. In seconds.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"enforce_first_as": {
"description": "Enforce that the first AS in paths received from this peer is the peer's AS.",
"default": false,
"type": "boolean"
},
"hold_time": {
"nullable": true,
"description": "How long to keep a session alive without a keepalive in seconds. Defaults to 6.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"idle_hold_time": {
"nullable": true,
"description": "How long to keep a peer in idle after a state machine reset in seconds.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"keepalive": {
"nullable": true,
"description": "The interval to send keepalive messages at.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"local_pref": {
"nullable": true,
"description": "Apply a local preference to routes received from this peer.",
"default": null,
"type": "integer",
"format": "uint32",
"minimum": 0
},
"md5_auth_key": {
"nullable": true,
"description": "Use the given key for TCP-MD5 authentication with the peer.",
"default": null,
"type": "string"
},
"min_ttl": {
"nullable": true,
"description": "Require messages from a peer have a minimum IP time to live field.",
"default": null,
"type": "integer",
"format": "uint8",
"minimum": 0
},
"multi_exit_discriminator": {
"nullable": true,
"description": "Apply the provided multi-exit discriminator (MED) updates sent to the peer.",
"default": null,
"type": "integer",
"format": "uint32",
"minimum": 0
},
"port": {
"description": "Switch port the peer is reachable on.",
"type": "string"
},
"remote_asn": {
"nullable": true,
"description": "Require that a peer has a specified ASN.",
"default": null,
"type": "integer",
"format": "uint32",
"minimum": 0
},
"vlan_id": {
"nullable": true,
"description": "Associate a VLAN ID with a BGP peer session.",
"default": null,
"type": "integer",
"format": "uint16",
"minimum": 0
}
},
"required": [
"addr",
"asn",
"port"
]
},
"BootstrapAddressDiscovery": {
"oneOf": [
{
"description": "Ignore all bootstrap addresses except our own.",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"only_ours"
]
}
},
"required": [
"type"
]
},
{
"description": "Ignore all bootstrap addresses except the following.",
"type": "object",
"properties": {
"addrs": {
"type": "array",
"items": {
"type": "string",
"format": "ipv6"
},
"uniqueItems": true
},
"type": {
"type": "string",
"enum": [
"only_these"
]
}
},
"required": [
"addrs",
"type"
]
}
]
},
"Certificate": {
"type": "object",
"properties": {
"cert": {
"type": "string"
},
"key": {
"type": "string"
}
},
"required": [
"cert",
"key"
]
},
"Component": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"$ref": "#/components/schemas/SemverVersion"
}
},
"required": [
"name",
"version"
]
},
"Error": {
"description": "Error information from a response.",
"type": "object",
"properties": {
"error_code": {
"type": "string"
},
"message": {
"type": "string"
},
"request_id": {
"type": "string"
}
},
"required": [
"message",
"request_id"
]
},
"ImportExportPolicy": {
"description": "Define policy relating to the import and export of prefixes from a BGP peer.",
"oneOf": [
{
"description": "Do not perform any filtering.",
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"no_filtering"
]
}
},
"required": [
"type"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"allow"
]
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IpNet"
}
}
},
"required": [
"type",
"value"
]
}
]
},
"IpNet": {
"x-rust-type": {
"crate": "oxnet",
"path": "oxnet::IpNet",
"version": "0.1.0"
},
"oneOf": [
{
"title": "v4",
"allOf": [
{
"$ref": "#/components/schemas/Ipv4Net"
}
]
},
{
"title": "v6",
"allOf": [
{
"$ref": "#/components/schemas/Ipv6Net"
}
]
}
]
},
"IpRange": {
"oneOf": [
{
"title": "v4",
"allOf": [
{
"$ref": "#/components/schemas/Ipv4Range"
}
]
},
{
"title": "v6",
"allOf": [
{
"$ref": "#/components/schemas/Ipv6Range"
}
]
}
]
},
"Ipv4Net": {
"example": "192.168.1.0/24",
"title": "An IPv4 subnet",
"description": "An IPv4 subnet, including prefix and prefix length",
"x-rust-type": {
"crate": "oxnet",
"path": "oxnet::Ipv4Net",
"version": "0.1.0"
},
"type": "string",
"pattern": "^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])/([0-9]|1[0-9]|2[0-9]|3[0-2])$"
},
"Ipv4Range": {
"description": "A non-decreasing IPv4 address range, inclusive of both ends.\n\nThe first address must be less than or equal to the last address.",
"type": "object",
"properties": {
"first": {
"type": "string",
"format": "ipv4"
},
"last": {
"type": "string",
"format": "ipv4"
}
},
"required": [
"first",
"last"
]
},
"Ipv6Net": {
"example": "fd12:3456::/64",
"title": "An IPv6 subnet",
"description": "An IPv6 subnet, including prefix and subnet mask",
"x-rust-type": {
"crate": "oxnet",
"path": "oxnet::Ipv6Net",
"version": "0.1.0"
},
"type": "string",
"pattern": "^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\\/([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-8])$"
},
"Ipv6Range": {
"description": "A non-decreasing IPv6 address range, inclusive of both ends.\n\nThe first address must be less than or equal to the last address.",
"type": "object",
"properties": {
"first": {
"type": "string",
"format": "ipv6"
},
"last": {
"type": "string",
"format": "ipv6"
}
},
"required": [
"first",
"last"
]
},
"LldpAdminStatus": {
"description": "To what extent should this port participate in LLDP",
"type": "string",
"enum": [
"enabled",
"disabled",
"rx_only",
"tx_only"
]
},
"LldpPortConfig": {
"description": "Per-port LLDP configuration settings. Only the \"status\" setting is mandatory. All other fields have natural defaults or may be inherited from the switch.",
"type": "object",
"properties": {
"chassis_id": {
"nullable": true,
"description": "Chassis ID to advertise. If this is set, it will be advertised as a LocallyAssigned ID type. If this is not set, it will be inherited from the switch-level settings.",
"type": "string"
},
"management_addrs": {
"nullable": true,
"description": "Management IP addresses to advertise. If this is not set, it will be inherited from the switch-level settings.",
"type": "array",
"items": {
"type": "string",
"format": "ip"
}
},
"port_description": {
"nullable": true,
"description": "Port description to advertise. If this is not set, no description will be advertised.",
"type": "string"
},
"port_id": {
"nullable": true,
"description": "Port ID to advertise. If this is set, it will be advertised as a LocallyAssigned ID type. If this is not set, it will be set to the port name. e.g., qsfp0/0.",
"type": "string"
},
"status": {
"description": "To what extent should this port participate in LLDP",
"allOf": [
{
"$ref": "#/components/schemas/LldpAdminStatus"
}
]
},
"system_description": {
"nullable": true,
"description": "System description to advertise. If this is not set, it will be inherited from the switch-level settings.",
"type": "string"
},
"system_name": {
"nullable": true,
"description": "System name to advertise. If this is not set, it will be inherited from the switch-level settings.",
"type": "string"
}
},
"required": [
"status"
]
},
"Name": {
"title": "A name unique within the parent collection",
"description": "Names must begin with a lower case ASCII letter, be composed exclusively of lowercase ASCII, uppercase ASCII, numbers, and '-', and may not end with a '-'. Names cannot be a UUID, but they may contain a UUID. They can be at most 63 characters long.",
"type": "string",
"pattern": "^(?![0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)^[a-z]([a-zA-Z0-9-]*[a-zA-Z0-9]+)?$",
"minLength": 1,
"maxLength": 63
},
"NewPasswordHash": {
"title": "A password hash in PHC string format",
"description": "Password hashes must be in PHC (Password Hashing Competition) string format. Passwords must be hashed with Argon2id. Password hashes may be rejected if the parameters appear not to be secure enough.",
"type": "string"
},
"PortConfigV2": {
"type": "object",
"properties": {
"addresses": {
"description": "This port's addresses and optional vlan IDs",
"type": "array",
"items": {
"$ref": "#/components/schemas/UplinkAddressConfig"
}
},
"autoneg": {
"description": "Whether or not to set autonegotiation",
"default": false,
"type": "boolean"
},
"bgp_peers": {
"description": "BGP peers on this port",
"type": "array",
"items": {
"$ref": "#/components/schemas/BgpPeerConfig"
}
},
"lldp": {
"nullable": true,
"description": "LLDP configuration for this port",
"allOf": [
{
"$ref": "#/components/schemas/LldpPortConfig"
}
]
},
"port": {
"description": "Nmae of the port this config applies to.",
"type": "string"
},
"routes": {
"description": "The set of routes associated with this port.",
"type": "array",
"items": {
"$ref": "#/components/schemas/RouteConfig"
}
},
"switch": {
"description": "Switch the port belongs to.",
"allOf": [
{
"$ref": "#/components/schemas/SwitchLocation"
}
]
},
"tx_eq": {
"nullable": true,
"description": "TX-EQ configuration for this port",
"allOf": [
{
"$ref": "#/components/schemas/TxEqConfig"
}
]
},
"uplink_port_fec": {
"nullable": true,
"description": "Port forward error correction type.",
"allOf": [
{
"$ref": "#/components/schemas/PortFec"
}
]
},
"uplink_port_speed": {
"description": "Port speed.",
"allOf": [
{
"$ref": "#/components/schemas/PortSpeed"
}
]
}
},
"required": [
"addresses",
"bgp_peers",
"port",
"routes",
"switch",
"uplink_port_speed"
]
},
"PortFec": {
"description": "Switchport FEC options",
"type": "string",
"enum": [
"firecode",
"none",
"rs"
]
},
"PortSpeed": {
"description": "Switchport Speed options",
"type": "string",
"enum": [
"speed0_g",
"speed1_g",
"speed10_g",
"speed25_g",
"speed40_g",
"speed50_g",
"speed100_g",
"speed200_g",
"speed400_g"
]
},
"RackInitializeRequest": {
"description": "Configuration for the \"rack setup service\".\n\nThe Rack Setup Service should be responsible for one-time setup actions, such as CockroachDB placement and initialization. Without operator intervention, however, these actions need a way to be automated in our deployment.",
"type": "object",
"properties": {
"allowed_source_ips": {
"description": "IPs or subnets allowed to make requests to user-facing services",
"default": {
"allow": "any"
},
"allOf": [
{
"$ref": "#/components/schemas/AllowedSourceIps"
}
]
},
"bootstrap_discovery": {
"description": "Describes how bootstrap addresses should be collected during RSS.",
"allOf": [
{
"$ref": "#/components/schemas/BootstrapAddressDiscovery"
}
]
},
"dns_servers": {
"description": "The external DNS server addresses.",
"type": "array",
"items": {
"type": "string",
"format": "ip"
}
},
"external_certificates": {
"description": "initial TLS certificates for the external API",
"type": "array",
"items": {
"$ref": "#/components/schemas/Certificate"
}
},
"external_dns_ips": {
"description": "Service IP addresses on which we run external DNS servers.\n\nEach address must be present in `internal_services_ip_pool_ranges`.",
"type": "array",
"items": {
"type": "string",
"format": "ip"
}
},
"external_dns_zone_name": {
"description": "DNS name for the DNS zone delegated to the rack for external DNS",
"type": "string"
},
"internal_services_ip_pool_ranges": {
"description": "Ranges of the service IP pool which may be used for internal services.",
"type": "array",
"items": {
"$ref": "#/components/schemas/IpRange"
}
},
"ntp_servers": {
"description": "The external NTP server addresses.",
"type": "array",
"items": {
"type": "string"
}
},
"rack_network_config": {
"description": "Initial rack network configuration",
"allOf": [
{
"$ref": "#/components/schemas/RackNetworkConfigV2"
}
]
},
"recovery_silo": {
"description": "Configuration of the Recovery Silo (the initial Silo)",
"allOf": [
{
"$ref": "#/components/schemas/RecoverySiloConfig"
}
]
},
"trust_quorum_peers": {
"nullable": true,