forked from G-Research/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
6909 lines (6909 loc) · 246 KB
/
index.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
apiVersion: v1
entries:
armada:
- apiVersion: v2
appVersion: 0.4.32
created: "2024-03-12T15:44:05.494770086Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 6f2e79fe383f89215a2e85bf1953b1eb27e2ef891fcd930c97b2bada091e62d6
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.32.tgz
version: 0.4.32
- apiVersion: v2
appVersion: 0.4.31
created: "2024-03-12T15:44:05.494328612Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 8a52c751ddf72fd3d6bf6af52fc41cc628df44c0650c0e56d2c92a952323c321
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.31.tgz
version: 0.4.31
- apiVersion: v2
appVersion: 0.4.30
created: "2024-03-12T15:44:05.493881999Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 8ae61529cf824ab3a6b5f69fbe2dd4309632deb90fffb6ff19c9fea3d37571dd
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.30.tgz
version: 0.4.30
- apiVersion: v2
appVersion: 0.4.29
created: "2024-03-12T15:44:05.492973865Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 85d3a9dcd6fd8f6c02e67ec06b81cf84e76e249bb12d5083d3d3826ac81f337a
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.29.tgz
version: 0.4.29
- apiVersion: v2
appVersion: 0.4.28
created: "2024-03-12T15:44:05.49252584Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: c70cc9ccc82cde7021df84ac2088830217c2999f416429462f740bb12511d8a3
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.28.tgz
version: 0.4.28
- apiVersion: v2
appVersion: 0.4.27
created: "2024-03-12T15:44:05.492048449Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: cd9d9769fa6224c1459cd9868b98d7d70699dd950b6746d1211527bcda444844
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.27.tgz
version: 0.4.27
- apiVersion: v2
appVersion: 0.4.26
created: "2024-03-12T15:44:05.491603148Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 92c8505da59ad2bad0400a767c09aa42732994c454b36e2304d4697b59c9d710
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.26.tgz
version: 0.4.26
- apiVersion: v2
appVersion: 0.4.25
created: "2024-03-12T15:44:05.491155002Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 80bdf08a84ae8a62d09969306e1d3d49c52cd20a2a61d9b92a4aada6e0b00a1b
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.25.tgz
version: 0.4.25
- apiVersion: v2
appVersion: 0.4.24
created: "2024-03-12T15:44:05.490705854Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: e8ffce0376f38d58ce633f679964a0823e961a06269966014ce1ddda1f414853
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.24.tgz
version: 0.4.24
- apiVersion: v2
appVersion: 0.4.23
created: "2024-03-12T15:44:05.490227532Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: fbf8ea979567f9eff55d3ab745231416771cbdd876c5c758d156346ef34067f0
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.23.tgz
version: 0.4.23
- apiVersion: v2
appVersion: 0.4.22
created: "2024-03-12T15:44:05.489738851Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 8aa744ce76251b144d3e84ea0362e70fee6bdaacb12da97ef4d206231945e8ea
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.22.tgz
version: 0.4.22
- apiVersion: v2
appVersion: 0.4.21
created: "2024-03-12T15:44:05.489119866Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 5ad1eab509962c935f4f6158928b07c74012aca458fb2951c32019a53ca34525
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.21.tgz
version: 0.4.21
- apiVersion: v2
appVersion: 0.4.20
created: "2024-03-12T15:44:05.480328314Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: e749f6b8651095d875475194845a631c3ea167b4c3dbb789c518df40c9a25d21
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.20.tgz
version: 0.4.20
- apiVersion: v2
appVersion: 0.4.19
created: "2024-03-12T15:44:05.479328349Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 21dd8fd69c69f314f4faf876d1718c7276a29ddb59ae4b30bd88d444e67e8011
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.19.tgz
version: 0.4.19
- apiVersion: v2
appVersion: 0.4.18
created: "2024-03-12T15:44:05.478892025Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 7004c15bda7802b0f4a10e5b06ee0ab7942562cf34cca499a2e7e33307beb4b7
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.18.tgz
version: 0.4.18
- apiVersion: v2
appVersion: 0.4.17
created: "2024-03-12T15:44:05.478441906Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: e82ba52c8429834273f6f4b5cb4212f30f5b4ad3a10d6397cd5d7f2dee29830b
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.17.tgz
version: 0.4.17
- apiVersion: v2
appVersion: 0.4.16
created: "2024-03-12T15:44:05.478002556Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: a6d7f143b7fce4d5ac5f6d61a157971ff40c913f1e8a232a25faa17bbe941c3b
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.16.tgz
version: 0.4.16
- apiVersion: v2
appVersion: 0.4.15
created: "2024-03-12T15:44:05.477561403Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 086e3f7be973ca5358b5d80ca7d6e3546be2ac818cbc255303c639064a49cdd0
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.15.tgz
version: 0.4.15
- apiVersion: v2
appVersion: 0.4.14
created: "2024-03-12T15:44:05.477117796Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: e7fedb8346d265fb35bcd24e7bcf033f9eafb80ce8077546f74b32844ab0c263
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.14.tgz
version: 0.4.14
- apiVersion: v2
appVersion: 0.4.13
created: "2024-03-12T15:44:05.476661415Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 15a6c224257352271af2bc2829d8706899b8712e48ece6fe9495f597b4072a38
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.13.tgz
version: 0.4.13
- apiVersion: v2
appVersion: 0.4.12
created: "2024-03-12T15:44:05.475987137Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: a9116d7bbbdda82895071176b22ba815fbef75fa2d8d8a0b2cc79af5adc95b7a
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.12.tgz
version: 0.4.12
- apiVersion: v2
appVersion: 0.4.11
created: "2024-03-12T15:44:05.475540143Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 353ac51de518ac0145ab7a47bd9c19c43b31cc4142d400ac6d0a0a11a2410d89
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.11.tgz
version: 0.4.11
- apiVersion: v2
appVersion: 0.4.10
created: "2024-03-12T15:44:05.475084493Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: dec07c1ed444b8a219386feb64517f9ce25c7eca86833bb37058dfdfd175b297
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.10.tgz
version: 0.4.10
- apiVersion: v2
appVersion: 0.4.9
created: "2024-03-12T15:44:05.49837255Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 24b1bd5764d408af8140883980c69f590a9319e63793774eef6d35bc9029136e
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.9.tgz
version: 0.4.9
- apiVersion: v2
appVersion: 0.4.8
created: "2024-03-12T15:44:05.497926959Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: f24d3968df95aa1cd2f5378373b1e998fad633e70e6477e1a3494f4551765a7c
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.8.tgz
version: 0.4.8
- apiVersion: v2
appVersion: 0.4.7
created: "2024-03-12T15:44:05.497478051Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 8f1ef9dca06034db9d6807cc3f515bf45e75d99e1864b591ed6650ecf796ec40
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.7.tgz
version: 0.4.7
- apiVersion: v2
appVersion: 0.4.6
created: "2024-03-12T15:44:05.497026409Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 46cac6e87fb922fcb1978d2daff2fc5ed0208ba66aacd596b6aa81ca59344892
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.6.tgz
version: 0.4.6
- apiVersion: v2
appVersion: 0.4.5
created: "2024-03-12T15:44:05.496570729Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: b6e8997dc979300f13e6d21658bf0160c4604bc53573be65af23d0d7d97d0726
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.5.tgz
version: 0.4.5
- apiVersion: v2
appVersion: 0.4.4
created: "2024-03-12T15:44:05.496030221Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: de726e08b1c3fdac0064652a261d71b556fdb6a7aed68892b35f4e2c7d140b66
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.4.tgz
version: 0.4.4
- apiVersion: v2
appVersion: 0.4.3
created: "2024-03-12T15:44:05.493417944Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: abdc0592b00c60a279b0dcd8d6af8f71dd2ed10ae638ea555f958fa647a22f5f
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.3.tgz
version: 0.4.3
- apiVersion: v2
appVersion: 0.4.2
created: "2024-03-12T15:44:05.479782827Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: fcf71dd7d9733c886a27d77018b6fb990717a02c494e0d31dd089971d74210a2
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.2.tgz
version: 0.4.2
- apiVersion: v2
appVersion: 0.4.1
created: "2024-03-12T15:44:05.474545748Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: fc6bc1e39d453a918514ccc78485665aa0c12a5727e356d29e824fa2c8a0807e
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.1.tgz
version: 0.4.1
- apiVersion: v2
appVersion: 0.4.0
created: "2024-03-12T15:44:05.473463841Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 2be42b829e6faf5038543dfe93f791628db99e537a040e1b6d0b8fff9c64cfb4
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 0.3.103
created: "2024-03-12T15:44:05.466588084Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 1b9b221135e4e81e8ff74d1f2700c649d25c3457f58e2101e2140507d5f259ae
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.103.tgz
version: 0.3.103
- apiVersion: v2
appVersion: 0.3.102
created: "2024-03-12T15:44:05.466138034Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: a8944e2c220a875ad0e96d17f838c2bb2a10b2f683ed9bb5fe95f39bb85b90fc
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.102.tgz
version: 0.3.102
- apiVersion: v2
appVersion: 0.3.101
created: "2024-03-12T15:44:05.465667476Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: b1ee065d86fef6b22509f6dff021c3f6c6a1b503986cd218ead855c8bccbeda9
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.101.tgz
version: 0.3.101
- apiVersion: v2
appVersion: 0.3.100
created: "2024-03-12T15:44:05.465162885Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 89c098830a31a534d5c3684b4ec1843504d5df5e2f51e739dc1a794b88101af7
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.100.tgz
version: 0.3.100
- apiVersion: v2
appVersion: 0.3.99
created: "2024-03-12T15:44:05.472996519Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: c4d0d255a33acbcb42369ee6b27297f2a1f5d004c556a2b6500afae4ae7f82f9
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.99.tgz
version: 0.3.99
- apiVersion: v2
appVersion: 0.3.98
created: "2024-03-12T15:44:05.472535028Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: b96c50c1ca35f17846cd0e44044a1e27de5c90b45037fde26a8e74cf6629a21c
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.98.tgz
version: 0.3.98
- apiVersion: v2
appVersion: 0.3.96
created: "2024-03-12T15:44:05.472051466Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 78188e1b4d6c1bb58ff3e32c9d5519fb3dd8e5eff22f7add034b4fffafd6f660
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.96.tgz
version: 0.3.96
- apiVersion: v2
appVersion: 0.3.95
created: "2024-03-12T15:44:05.471609241Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: eb9851a52a58d78ad58c1018d0b9abebf65a26665d8487f8624d498a7d00d94d
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.95.tgz
version: 0.3.95
- apiVersion: v2
appVersion: 0.3.94
created: "2024-03-12T15:44:05.471170283Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: d33bc71b05575e02d7726ee33edf3201b1c1f3c2010ffa5dbbab609cd922d930
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.94.tgz
version: 0.3.94
- apiVersion: v2
appVersion: 0.3.93
created: "2024-03-12T15:44:05.470729751Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 6cd50369cfe832ec36f5e813c469ad1f2268d12b0bb457254944562fa44d5a29
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.93.tgz
version: 0.3.93
- apiVersion: v2
appVersion: 0.3.92
created: "2024-03-12T15:44:05.470279431Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 3989f5510ad7dda69a01f925cf71d711111df009b5d2ab994f381805815cf30b
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.92.tgz
version: 0.3.92
- apiVersion: v2
appVersion: 0.3.91
created: "2024-03-12T15:44:05.469843808Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: db9c4da2b9c055030bfea5bb8b5a17b45328d6af7f3e11766786338281f533e3
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.91.tgz
version: 0.3.91
- apiVersion: v2
appVersion: 0.3.90
created: "2024-03-12T15:44:05.469410179Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 9b6571c20b63401c89b6a3b6fb77d8444f91c1db6a8b0410f536ec4414944f09
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.90.tgz
version: 0.3.90
- apiVersion: v2
appVersion: 0.3.89
created: "2024-03-12T15:44:05.468969026Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 4325263126287d127cdb14b0fc9003be171db1f7eb2171f3e75b4ae4ed76803a
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.89.tgz
version: 0.3.89
- apiVersion: v2
appVersion: 0.3.88
created: "2024-03-12T15:44:05.468474695Z"
description: Armada Server is the centralized Control Plane for Armada, the multi-cluster
batch scheduler.
digest: 4875aeba2aa689c88d5b4a7b3a0035ef164d64a185435819bb68fcaf1a3196b6
home: https://armadaproject.io
icon: https://armadaproject.io/assets/img/Armada-favicon.png
keywords:
- multi-cluster
- batch-scheduler
name: armada
sources:
- https://github.com/armadaproject/armada
urls:
- armada/armada-0.3.88.tgz
version: 0.3.88
- apiVersion: v1
appVersion: 0.3.39
created: "2024-03-12T15:44:05.467141837Z"
description: A helm chart for armada API component
digest: 3c69e9a3ccc89b49fbec41510c9d4d81d823f65d61ff0423629489da3a5fb0e8
name: armada
urls:
- armada/armada-0.3.39.tgz
version: 0.3.39
- apiVersion: v1
appVersion: 0.3.38
created: "2024-03-12T15:44:05.466872484Z"
description: A helm chart for armada API component
digest: 7d8b1a2757e34a1d9b3c06f7168d538eee77940f394333422a7257523348e7e5
name: armada
urls:
- armada/armada-0.3.38.tgz
version: 0.3.38
- apiVersion: v1
appVersion: v0.3.37
created: "2024-03-12T15:44:05.687756971Z"
description: A helm chart for armada API component
digest: 00f49a546f102f3452035d52f5430c5788b7f3b90bef6eab2c1fb6d2ba25b8b5
name: armada
urls:
- armada/armada-v0.3.37.tgz
version: v0.3.37
- apiVersion: v1
appVersion: v0.3.36
created: "2024-03-12T15:44:05.687498739Z"
description: A helm chart for armada API component
digest: 2f625eb4e196813948b9fb9045e47de861823313e17316dabcd0a87fb4dd7620
name: armada
urls:
- armada/armada-v0.3.36.tgz
version: v0.3.36
- apiVersion: v1
appVersion: v0.3.20
created: "2024-03-12T15:44:05.687226932Z"
description: A helm chart for armada API component
digest: 52f46a5bc1295cf2a35fd7f581d77b2838ff554c18de50edd52da0a3186a4f23
name: armada
urls:
- armada/armada-v0.3.20.tgz
version: v0.3.20
- apiVersion: v1
appVersion: v0.1.43
created: "2024-03-12T15:44:05.686680323Z"
description: A helm chart for armada API component
digest: b75b19a5af1a3938913453b10480a80114bf83f1aa62b11fd7e97c59db6e5f35
name: armada
urls:
- armada/armada-v0.1.43.tgz
version: v0.1.43
- apiVersion: v1
appVersion: v0.1.42
created: "2024-03-12T15:44:05.686443882Z"
description: A helm chart for armada API component
digest: 163d193c6f73a08e9a84d4c3d16624dd50657d567c1a7fde02e7cda5145809e7
name: armada
urls:
- armada/armada-v0.1.42.tgz
version: v0.1.42
- apiVersion: v1
appVersion: v0.1.30
created: "2024-03-12T15:44:05.686206028Z"
description: A helm chart for armada API component
digest: 666820df00f414e3d3d9ed6fba32bcb4a89097cd28e19ee96faab5a3c2a0714a
name: armada
urls:
- armada/armada-v0.1.30.tgz
version: v0.1.30
- apiVersion: v1
appVersion: v0.1.15
created: "2024-03-12T15:44:05.685964437Z"
description: A helm chart for armada API component
digest: 053d5015163ac4b7a4435ff2f3073cac4dfb0c74c56d49b35693d89ec01929f5
name: armada
urls:
- armada/armada-v0.1.15.tgz
version: v0.1.15
- apiVersion: v1
appVersion: v0.1.14
created: "2024-03-12T15:44:05.685724941Z"
description: A helm chart for armada API component
digest: a3ada0c8c4e56218f60d778707979e39e00ee012e342373beec2a02afddbcd93
name: armada
urls:
- armada/armada-v0.1.14.tgz
version: v0.1.14
- apiVersion: v1
appVersion: v0.1.9
created: "2024-03-12T15:44:05.686961186Z"
description: A helm chart for armada API component
digest: b428db8f55bb8d38fe30a48f2ed756817a60eea166c66ef5791a562d5ea6eb8c
name: armada
urls:
- armada/armada-v0.1.9.tgz
version: v0.1.9
- apiVersion: v1
appVersion: v1
created: "2024-03-12T15:44:05.464663644Z"
description: A helm chart for armada API component
digest: 09b01cd14bd92e3e75a9fb7356677464a8ad02025deee81cacb5482185d87a7c
name: armada
urls:
- armada/armada-0.0.1.tgz
version: 0.0.1
armada-binoculars:
- apiVersion: v1
appVersion: 0.4.32
created: "2024-03-12T15:44:05.524325809Z"
description: A helm chart for Armada Binoculars component
digest: 767d5284cb1d19b072ce8bfdb088bc9c34c09ba413a468378e658a66e6606fc0
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.32.tgz
version: 0.4.32
- apiVersion: v1
appVersion: 0.4.31
created: "2024-03-12T15:44:05.524007655Z"
description: A helm chart for Armada Binoculars component
digest: bb80a7c6deb4c897b6620fe5b2d138f58bec53aac5894e40975a617608963b27
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.31.tgz
version: 0.4.31
- apiVersion: v1
appVersion: 0.4.30
created: "2024-03-12T15:44:05.523716372Z"
description: A helm chart for Armada Binoculars component
digest: 2213f7e87392b741cbfd33341c2900cfa4c0d79f61c00148ad1342a9886bc510
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.30.tgz
version: 0.4.30
- apiVersion: v1
appVersion: 0.4.29
created: "2024-03-12T15:44:05.523135208Z"
description: A helm chart for Armada Binoculars component
digest: 9bd8f77fb577af44079f5c07c05c5dce2aed770eec6486fd5765abc1245723e0
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.29.tgz
version: 0.4.29
- apiVersion: v1
appVersion: 0.4.28
created: "2024-03-12T15:44:05.522844035Z"
description: A helm chart for Armada Binoculars component
digest: 87c2bf075f866a757bf329353666685076bf81bf3031a370121120149d59c109
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.28.tgz
version: 0.4.28
- apiVersion: v1
appVersion: 0.4.27
created: "2024-03-12T15:44:05.522552331Z"
description: A helm chart for Armada Binoculars component
digest: cd3c42f7a4362285c7d47366d5a7e35a950e99d8c0395e179d9962fae2af745b
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.27.tgz
version: 0.4.27
- apiVersion: v1
appVersion: 0.4.26
created: "2024-03-12T15:44:05.52225157Z"
description: A helm chart for Armada Binoculars component
digest: b1d1be17b097f3f0071c18d06a99c672b066f2f7de51dab2c78c2f18a581246f
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.26.tgz
version: 0.4.26
- apiVersion: v1
appVersion: 0.4.25
created: "2024-03-12T15:44:05.521955989Z"
description: A helm chart for Armada Binoculars component
digest: 2ddef68d987adf1267f2ee5c2fbe57ad541cc7f2ad9e4f33cccc9d06e5119465
name: armada-binoculars
urls:
- armada/armada-binoculars-0.4.25.tgz
version: 0.4.25