-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyaml_config.yaml
More file actions
4513 lines (3841 loc) · 64 KB
/
yaml_config.yaml
File metadata and controls
4513 lines (3841 loc) · 64 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
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
environment: production
secrets:
- name: api_key
vault_path: secret/queue/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 1
max: 10
target_cpu: 60
scale_down_delay: 224s
auth:
enabled: false
port: 8014
host: localhost
logging:
level: warn
format: json
resources:
cpu: 572m
memory: 995Mi
metrics:
enabled: false
port: 8749
host: localhost
logging:
level: info
format: json
resources:
cpu: 999m
memory: 413Mi
database:
driver: mysql
host: db.metrics.local
port: 5651
pool:
min: 3
max: 40
idle_timeout: 145s
replicas:
min: 3
max: 9
target_cpu: 79
scale_down_delay: 116s
environment: development
secrets:
- name: api_key
vault_path: secret/cache/api_key
- name: db_password
vault_path: secret/database/password
environment: staging
secrets:
- name: api_key
vault_path: secret/metrics/api_key
- name: db_password
vault_path: secret/database/password
environment: production
secrets:
- name: api_key
vault_path: secret/metrics/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 1
max: 7
target_cpu: 50
scale_down_delay: 249s
db:
enabled: false
port: 3499
host: 0.0.0.0
logging:
level: debug
format: text
resources:
cpu: 508m
memory: 434Mi
queue:
enabled: false
port: 7470
host: 0.0.0.0
logging:
level: error
format: text
resources:
cpu: 611m
memory: 653Mi
environment: development
secrets:
- name: api_key
vault_path: secret/api/api_key
- name: db_password
vault_path: secret/database/password
features:
auth_enabled: true
db_beta: true
metrics_beta: false
api_enabled: true
db_enabled: true
auth:
enabled: true
port: 8861
host: localhost
logging:
level: warn
format: json
resources:
cpu: 937m
memory: 171Mi
environment: development
secrets:
- name: api_key
vault_path: secret/worker/api_key
- name: db_password
vault_path: secret/database/password
environment: staging
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
gateway:
enabled: true
port: 7221
host: localhost
logging:
level: error
format: text
resources:
cpu: 629m
memory: 807Mi
features:
queue_enabled: false
metrics_enabled: false
db_enabled: false
gateway:
enabled: false
port: 5576
host: localhost
logging:
level: warn
format: text
resources:
cpu: 639m
memory: 768Mi
metrics:
enabled: true
port: 7382
host: localhost
logging:
level: warn
format: text
resources:
cpu: 107m
memory: 802Mi
environment: development
secrets:
- name: api_key
vault_path: secret/cache/api_key
- name: db_password
vault_path: secret/database/password
environment: staging
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
features:
db_beta: false
db_enabled: false
gateway_beta: true
queue_beta: true
worker_beta: false
environment: production
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: redis
host: db.api.local
port: 6108
pool:
min: 1
max: 10
idle_timeout: 226s
replicas:
min: 1
max: 19
target_cpu: 62
scale_down_delay: 250s
environment: development
secrets:
- name: api_key
vault_path: secret/auth/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: postgres
host: db.cache.local
port: 5758
pool:
min: 5
max: 74
idle_timeout: 98s
replicas:
min: 1
max: 5
target_cpu: 69
scale_down_delay: 249s
database:
driver: redis
host: db.gateway.local
port: 5660
pool:
min: 3
max: 84
idle_timeout: 60s
database:
driver: postgres
host: db.metrics.local
port: 6022
pool:
min: 4
max: 68
idle_timeout: 69s
database:
driver: mysql
host: db.auth.local
port: 6036
pool:
min: 2
max: 90
idle_timeout: 128s
db:
enabled: true
port: 7539
host: 0.0.0.0
logging:
level: error
format: json
resources:
cpu: 637m
memory: 842Mi
features:
gateway_enabled: false
worker_beta: false
cache_enabled: false
queue_beta: false
worker_enabled: false
features:
api_beta: true
metrics_beta: false
metrics_enabled: true
api:
enabled: true
port: 7272
host: 0.0.0.0
logging:
level: error
format: json
resources:
cpu: 933m
memory: 806Mi
replicas:
min: 1
max: 7
target_cpu: 66
scale_down_delay: 92s
api:
enabled: false
port: 3864
host: 0.0.0.0
logging:
level: info
format: json
resources:
cpu: 273m
memory: 470Mi
replicas:
min: 2
max: 6
target_cpu: 72
scale_down_delay: 62s
environment: production
secrets:
- name: api_key
vault_path: secret/queue/api_key
- name: db_password
vault_path: secret/database/password
auth:
enabled: true
port: 4733
host: 0.0.0.0
logging:
level: warn
format: json
resources:
cpu: 190m
memory: 330Mi
cache:
enabled: false
port: 6406
host: 0.0.0.0
logging:
level: error
format: text
resources:
cpu: 951m
memory: 353Mi
database:
driver: mysql
host: db.cache.local
port: 5654
pool:
min: 5
max: 31
idle_timeout: 276s
db:
enabled: false
port: 3885
host: 0.0.0.0
logging:
level: debug
format: text
resources:
cpu: 975m
memory: 891Mi
replicas:
min: 2
max: 18
target_cpu: 53
scale_down_delay: 94s
environment: production
secrets:
- name: api_key
vault_path: secret/db/api_key
- name: db_password
vault_path: secret/database/password
features:
db_beta: false
metrics_beta: true
api_beta: true
auth:
enabled: false
port: 6342
host: 0.0.0.0
logging:
level: info
format: text
resources:
cpu: 254m
memory: 251Mi
replicas:
min: 2
max: 6
target_cpu: 66
scale_down_delay: 159s
database:
driver: postgres
host: db.auth.local
port: 5488
pool:
min: 3
max: 11
idle_timeout: 271s
queue:
enabled: true
port: 7074
host: localhost
logging:
level: debug
format: text
resources:
cpu: 982m
memory: 530Mi
environment: development
secrets:
- name: api_key
vault_path: secret/cache/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 1
max: 8
target_cpu: 79
scale_down_delay: 220s
replicas:
min: 1
max: 18
target_cpu: 72
scale_down_delay: 163s
environment: development
secrets:
- name: api_key
vault_path: secret/metrics/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 1
max: 16
target_cpu: 59
scale_down_delay: 297s
environment: staging
secrets:
- name: api_key
vault_path: secret/api/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: mysql
host: db.metrics.local
port: 6221
pool:
min: 2
max: 79
idle_timeout: 33s
metrics:
enabled: false
port: 4352
host: 0.0.0.0
logging:
level: debug
format: json
resources:
cpu: 756m
memory: 781Mi
database:
driver: mongodb
host: db.db.local
port: 5879
pool:
min: 4
max: 49
idle_timeout: 258s
features:
metrics_beta: true
cache_beta: true
worker_enabled: true
worker_beta: false
environment: production
secrets:
- name: api_key
vault_path: secret/cache/api_key
- name: db_password
vault_path: secret/database/password
queue:
enabled: true
port: 8824
host: 0.0.0.0
logging:
level: warn
format: json
resources:
cpu: 324m
memory: 452Mi
features:
metrics_beta: true
metrics_beta: true
db_enabled: true
replicas:
min: 1
max: 15
target_cpu: 50
scale_down_delay: 247s
queue:
enabled: true
port: 4756
host: localhost
logging:
level: info
format: text
resources:
cpu: 138m
memory: 994Mi
database:
driver: postgres
host: db.db.local
port: 5814
pool:
min: 2
max: 64
idle_timeout: 149s
environment: staging
secrets:
- name: api_key
vault_path: secret/metrics/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: mongodb
host: db.auth.local
port: 5656
pool:
min: 2
max: 12
idle_timeout: 59s
replicas:
min: 1
max: 12
target_cpu: 59
scale_down_delay: 99s
environment: development
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
environment: development
secrets:
- name: api_key
vault_path: secret/auth/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 3
max: 11
target_cpu: 61
scale_down_delay: 245s
database:
driver: mongodb
host: db.api.local
port: 5568
pool:
min: 5
max: 67
idle_timeout: 205s
features:
auth_beta: true
auth_beta: true
db_enabled: false
queue:
enabled: true
port: 4824
host: 0.0.0.0
logging:
level: error
format: json
resources:
cpu: 603m
memory: 525Mi
replicas:
min: 2
max: 11
target_cpu: 54
scale_down_delay: 247s
features:
metrics_beta: false
cache_beta: true
worker_beta: true
auth_enabled: false
auth_enabled: false
database:
driver: mongodb
host: db.queue.local
port: 6128
pool:
min: 5
max: 80
idle_timeout: 293s
db:
enabled: false
port: 3918
host: 0.0.0.0
logging:
level: info
format: text
resources:
cpu: 703m
memory: 371Mi
database:
driver: redis
host: db.cache.local
port: 6030
pool:
min: 2
max: 37
idle_timeout: 131s
features:
db_enabled: true
api_enabled: false
db_enabled: false
queue_enabled: false
database:
driver: redis
host: db.api.local
port: 5987
pool:
min: 1
max: 54
idle_timeout: 123s
replicas:
min: 2
max: 11
target_cpu: 67
scale_down_delay: 299s
replicas:
min: 2
max: 7
target_cpu: 50
scale_down_delay: 99s
database:
driver: postgres
host: db.api.local
port: 5583
pool:
min: 3
max: 40
idle_timeout: 49s
environment: development
secrets:
- name: api_key
vault_path: secret/worker/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 2
max: 12
target_cpu: 71
scale_down_delay: 181s
features:
queue_enabled: false
worker_enabled: false
api_enabled: true
db_beta: true
auth_enabled: true
database:
driver: mongodb
host: db.api.local
port: 6277
pool:
min: 4
max: 88
idle_timeout: 292s
features:
worker_beta: true
db_beta: true
cache_enabled: true
features:
queue_enabled: true
metrics_beta: true
db_enabled: true
db_enabled: true
replicas:
min: 2
max: 10
target_cpu: 62
scale_down_delay: 120s
features:
queue_enabled: false
api_enabled: true
db_beta: false
gateway_enabled: true
database:
driver: mysql
host: db.cache.local
port: 5798
pool:
min: 3
max: 29
idle_timeout: 205s
replicas:
min: 1
max: 10
target_cpu: 67
scale_down_delay: 89s
replicas:
min: 2
max: 7
target_cpu: 56
scale_down_delay: 271s
features:
auth_beta: false
metrics_enabled: false
queue_beta: true
queue_beta: true
cache_beta: false
db_enabled: false
environment: production
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
metrics:
enabled: false
port: 4707
host: localhost
logging:
level: warn
format: text
resources:
cpu: 226m
memory: 984Mi
environment: development
secrets:
- name: api_key
vault_path: secret/worker/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: postgres
host: db.worker.local
port: 5499
pool:
min: 2
max: 52
idle_timeout: 211s
replicas:
min: 3
max: 11
target_cpu: 56
scale_down_delay: 223s
replicas:
min: 1
max: 5
target_cpu: 54
scale_down_delay: 231s
replicas:
min: 1
max: 12
target_cpu: 79
scale_down_delay: 106s
features:
cache_enabled: false
queue_beta: false
api_enabled: false
database:
driver: postgres
host: db.gateway.local
port: 6407
pool:
min: 1
max: 78
idle_timeout: 172s
features:
auth_beta: true
auth_beta: false
queue_beta: false
gateway_enabled: false
features:
api_beta: true
worker_beta: true
api_enabled: false
auth_beta: false
environment: production
secrets:
- name: api_key
vault_path: secret/metrics/api_key
- name: db_password
vault_path: secret/database/password
queue:
enabled: false
port: 4269
host: 0.0.0.0
logging:
level: debug
format: text
resources:
cpu: 158m
memory: 600Mi
replicas:
min: 3
max: 17
target_cpu: 77
scale_down_delay: 119s
environment: development
secrets:
- name: api_key
vault_path: secret/queue/api_key
- name: db_password
vault_path: secret/database/password
database:
driver: mysql
host: db.gateway.local
port: 6106
pool:
min: 5
max: 27
idle_timeout: 186s
environment: staging
secrets:
- name: api_key
vault_path: secret/cache/api_key
- name: db_password
vault_path: secret/database/password
environment: production
secrets:
- name: api_key
vault_path: secret/auth/api_key
- name: db_password
vault_path: secret/database/password
replicas:
min: 2
max: 19
target_cpu: 65
scale_down_delay: 167s
environment: staging
secrets:
- name: api_key
vault_path: secret/gateway/api_key
- name: db_password
vault_path: secret/database/password
gateway:
enabled: false
port: 3050
host: localhost
logging:
level: error
format: json
resources:
cpu: 148m
memory: 574Mi
database:
driver: postgres
host: db.api.local
port: 6287
pool:
min: 5
max: 95
idle_timeout: 286s
auth:
enabled: true
port: 6372
host: 0.0.0.0
logging:
level: debug
format: text
resources:
cpu: 470m
memory: 916Mi
features:
queue_beta: true
db_beta: false
api_enabled: false
database:
driver: mysql
host: db.gateway.local
port: 5438
pool:
min: 4
max: 18
idle_timeout: 135s
replicas:
min: 1
max: 15
target_cpu: 56