-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
2193 lines (2193 loc) · 81.4 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:
atlas-application:
- apiVersion: v1
appVersion: 0.4.32
created: "2025-01-14T11:44:17.705180273Z"
description: Workflow Configurator
digest: 4d0b6265148ae8827b27f39a183a9c6cf84f52f9e43a6f3e4becf0912ae04288
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.32.tgz
version: 0.4.32
- apiVersion: v1
appVersion: 0.4.31
created: "2025-01-14T11:44:17.70501283Z"
description: Workflow Configurator
digest: 5fea89e7184e41ab5242e28c1bf849cdfcf06dacb14ce7203b5ade8a757e7838
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.31.tgz
version: 0.4.31
- apiVersion: v1
appVersion: 0.4.30
created: "2025-01-14T11:44:17.70483142Z"
description: Workflow Configurator
digest: ba200df0e61449d9e02dea41a0467dbd0d8959aeb9fda1898340e0601b283a21
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.30.tgz
version: 0.4.30
- apiVersion: v1
appVersion: 0.4.29
created: "2025-01-14T11:44:17.70445672Z"
description: Workflow Configurator
digest: c7fdbcb37b45d0b582b54fbbc38943a39c847c6be9f488eacf5cd359d21d7e6e
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.29.tgz
version: 0.4.29
- apiVersion: v1
appVersion: 0.4.28
created: "2025-01-14T11:44:17.704278086Z"
description: Workflow Configurator
digest: e601256ed883098f4f096257cd4ebfb748b50175b095099179758e32bc9af039
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.28.tgz
version: 0.4.28
- apiVersion: v1
appVersion: 0.4.26
created: "2025-01-14T11:44:17.704104742Z"
description: Workflow Configurator
digest: 8d98d56e623aea6d69708128d01fa2e8974611a0a0c38e4b6879c9f9b878cfd7
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.26.tgz
version: 0.4.26
- apiVersion: v1
appVersion: 0.4.25
created: "2025-01-14T11:44:17.703920768Z"
description: Workflow Configurator
digest: e5e5200f1f5684255f40d42f1f20ac7b4e1ba47fbe9b51ac50008f9f35801d35
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.25.tgz
version: 0.4.25
- apiVersion: v1
appVersion: 0.4.24
created: "2025-01-14T11:44:17.703747544Z"
description: Workflow Configurator
digest: 4a9ca99e8963ac744675923f1201ef1c6c09f6222c24a5dcec5e9c7daf1efc0b
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.24.tgz
version: 0.4.24
- apiVersion: v1
appVersion: 0.4.23
created: "2025-01-14T11:44:17.703565063Z"
description: Workflow Configurator
digest: e2f06cf4c1b2db96e8870bbae91a1d22f2dae55ae1185ec36b76de4a312b43b3
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.23.tgz
version: 0.4.23
- apiVersion: v1
appVersion: 0.4.22
created: "2025-01-14T11:44:17.703377913Z"
description: Workflow Configurator
digest: 3d4a2fa0aa481c6da8cf7012c5bd9748a862dc27249e83193e473d1d4d10c111
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.22.tgz
version: 0.4.22
- apiVersion: v1
appVersion: 0.4.21
created: "2025-01-14T11:44:17.703205511Z"
description: Workflow Configurator
digest: 33f270afae45fe03f74457ddec678a35140ea242955fe2e3bc4f2d837ac60dde
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.21.tgz
version: 0.4.21
- apiVersion: v1
appVersion: 0.4.20
created: "2025-01-14T11:44:17.703035723Z"
description: Workflow Configurator
digest: e6ee5ac2515a9613e591896b5059b02dbf3022431b216e790d72069e3f939ae4
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.20.tgz
version: 0.4.20
- apiVersion: v1
appVersion: 0.4.19
created: "2025-01-14T11:44:17.702683505Z"
description: Workflow Configurator
digest: 6af7a6c0f7d24875d18ff30e6fb1635cf16eac8e3d6ad47f18282b7a6dd732bd
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.19.tgz
version: 0.4.19
- apiVersion: v1
appVersion: 0.4.18
created: "2025-01-14T11:44:17.702505803Z"
description: Workflow Configurator
digest: f3c7b282c9b547aa58d8304d0d6b9067cfeaac73d1b07ade25cd63eda0efa80e
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.18.tgz
version: 0.4.18
- apiVersion: v1
appVersion: 0.4.17
created: "2025-01-14T11:44:17.702267157Z"
description: Workflow Configurator
digest: f2f2243c1a8aac41f5649875594b9a291b9deafb78726f8181f89b11b0f3c895
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.17.tgz
version: 0.4.17
- apiVersion: v1
appVersion: 0.4.16
created: "2025-01-14T11:44:17.701977685Z"
description: Workflow Configurator
digest: 3af928177054fefdecc75e0fda39c5c98282693099e4620d92130b2746326ff9
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.16.tgz
version: 0.4.16
- apiVersion: v1
appVersion: 0.4.15
created: "2025-01-14T11:44:17.701801897Z"
description: Workflow Configurator
digest: 0bd3edeb5ae32d26717c0c59a3ea59bdc6b135a78c89117bd904ede5e126ced7
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.15.tgz
version: 0.4.15
- apiVersion: v1
appVersion: 0.4.14
created: "2025-01-14T11:44:17.701615608Z"
description: Workflow Configurator
digest: 28a61d99a2c17f72ec0222ec8e4a12f6a82b471c23a95420ed15678eda49e268
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.14.tgz
version: 0.4.14
- apiVersion: v1
appVersion: 0.4.13
created: "2025-01-14T11:44:17.701392371Z"
description: Workflow Configurator
digest: b500008b0b40c0726d5b74cde45800ae79ba58c01cd550da64c0afdf259584cd
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.13.tgz
version: 0.4.13
- apiVersion: v1
appVersion: 0.4.12
created: "2025-01-14T11:44:17.700913275Z"
description: Workflow Configurator
digest: 114f4747451ce797fbd93b025f3717d19cf8ab2f1a7f820653abb1c245d99378
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.12.tgz
version: 0.4.12
- apiVersion: v1
appVersion: 0.4.11
created: "2025-01-14T11:44:17.700374628Z"
description: Workflow Configurator
digest: faa151796651e876bc31f3517a63e0442cac8dac9dd6708df6f4ee1e56392735
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.11.tgz
version: 0.4.11
- apiVersion: v1
appVersion: 0.4.10
created: "2025-01-14T11:44:17.700204641Z"
description: Workflow Configurator
digest: 0ad1636446bd6f96e5e622f206ef547a0c7123d2b509c849c6a14b78a87646ac
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.10.tgz
version: 0.4.10
- apiVersion: v1
appVersion: 0.4.9
created: "2025-01-14T11:44:17.706627518Z"
description: Workflow Configurator
digest: 9450c6dfd389809ff0525cb5212ba29f259607cd9ba75d9f596212b3ff73b97b
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.9.tgz
version: 0.4.9
- apiVersion: v1
appVersion: 0.4.8
created: "2025-01-14T11:44:17.706231869Z"
description: Workflow Configurator
digest: 1c566c453beeaee5dab91ccfdfdc57691e69ab990ce7f2a797892957696d479a
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.8.tgz
version: 0.4.8
- apiVersion: v1
appVersion: 0.4.7
created: "2025-01-14T11:44:17.705897814Z"
description: Workflow Configurator
digest: 8484dd8c4b7d916a11cac170cbd069bac86d86bf51a74dfe9fc68c8b10977cfd
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.7.tgz
version: 0.4.7
- apiVersion: v1
appVersion: 0.4.6
created: "2025-01-14T11:44:17.705718038Z"
description: Workflow Configurator
digest: 583ae14d05fc4e1e5aeab7aaa6877781ba20361ba8b091c0682a019f8e5e7131
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.6.tgz
version: 0.4.6
- apiVersion: v1
appVersion: 0.4.5
created: "2025-01-14T11:44:17.705537751Z"
description: Workflow Configurator
digest: 477e1fbac44e54f2af53d3cdc4418699272adab0082569a58abc208026ec0ea5
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.5.tgz
version: 0.4.5
- apiVersion: v1
appVersion: 0.4.4
created: "2025-01-14T11:44:17.705351663Z"
description: Workflow Configurator
digest: 5f5e9fb1a179e69775d5fd16c203133c8dc78c6061997efa7f19b5f92ebae6e2
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.4.tgz
version: 0.4.4
- apiVersion: v1
appVersion: 0.4.3
created: "2025-01-14T11:44:17.704644731Z"
description: Workflow Configurator
digest: 18de5a0616d3ab227c108b20dfbf4453d7d757062497f9345f9830a8cd2da69d
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.3.tgz
version: 0.4.3
- apiVersion: v1
appVersion: 0.4.2
created: "2025-01-14T11:44:17.702864654Z"
description: Workflow Configurator
digest: 5652cef6acf844da7c67316d19e6d056a30219d3c257d54e09cfc199fbaf529c
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.2.tgz
version: 0.4.2
- apiVersion: v1
appVersion: 0.4.1
created: "2025-01-14T11:44:17.700035424Z"
description: Workflow Configurator
digest: b042cd9511d86ad6185c5e1d323f3eadc3f3cb1b2ddbecc26abd4952f7ee9751
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.1.tgz
version: 0.4.1
- apiVersion: v1
appVersion: 0.4.0
created: "2025-01-14T11:44:17.699868001Z"
description: Workflow Configurator
digest: 20170f83f724397316a88017369ddbc23dcefcfa89658ec63a942bc9d88ab2b6
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.4.0.tgz
version: 0.4.0
- apiVersion: v1
appVersion: 0.3.9
created: "2025-01-14T11:44:17.699695759Z"
description: Workflow Configurator
digest: ec5258c251df3bd1e33f80c7b66bfd7ce79bd1d03603b9845b2e591534dd3fcd
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.9.tgz
version: 0.3.9
- apiVersion: v1
appVersion: 0.3.8
created: "2025-01-14T11:44:17.699518207Z"
description: Workflow Configurator
digest: a7da0cb3d286aa7e2a5be84d0fcd7e5b57d41e587b244df7864aaa7e8108f7a8
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.8.tgz
version: 0.3.8
- apiVersion: v1
appVersion: 0.3.7
created: "2025-01-14T11:44:17.6993323Z"
description: Workflow Configurator
digest: 91c7ec5e990fa3c3690934f78fc22ef681172096c1e61ca1ee9d8f66b366b8e3
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.7.tgz
version: 0.3.7
- apiVersion: v1
appVersion: 0.3.6
created: "2025-01-14T11:44:17.699160599Z"
description: Workflow Configurator
digest: c3afa3b11034a5980fcf9d9ca7a788a37137b90410078c092fc92c51feb2c5b7
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.6.tgz
version: 0.3.6
- apiVersion: v1
appVersion: 0.3.5
created: "2025-01-14T11:44:17.698978679Z"
description: Workflow Configurator
digest: 306df346ba2a7107d7ade43e204de116a4e56b7bd0274561e64f68574eb7d7b9
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.5.tgz
version: 0.3.5
- apiVersion: v1
appVersion: 0.3.4
created: "2025-01-14T11:44:17.698805876Z"
description: Workflow Configurator
digest: cb543a0de15092160f6e82175f680f2017998eca2d0e34269f2ddc5967c023d4
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.4.tgz
version: 0.3.4
- apiVersion: v1
appVersion: 0.3.3
created: "2025-01-14T11:44:17.698595783Z"
description: Workflow Configurator
digest: 317a752d0cc17475af99388b9808856239ce6ab5b965265ef2076146d99b7654
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.3.tgz
version: 0.3.3
- apiVersion: v1
appVersion: 0.3.2
created: "2025-01-14T11:44:17.69840174Z"
description: Workflow Configurator
digest: 1ece6c82bdda961cc16c54fa4fd5410a66ec46b775192d63fc82c0bb3edcdcfa
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.2.tgz
version: 0.3.2
- apiVersion: v1
appVersion: 0.3.1
created: "2025-01-14T11:44:17.698206205Z"
description: Workflow Configurator
digest: 3ecd8a7ced6816c407674c9678b270574b07afbca7d8f27d05a6fde33a81721e
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.1.tgz
version: 0.3.1
- apiVersion: v1
appVersion: 0.3.0
created: "2025-01-14T11:44:17.697991834Z"
description: Workflow Configurator
digest: 98a4d674ba86a6f03ab1ba2fbd552e4395b99848ed5254ffbce1509e37978f68
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.3.0.tgz
version: 0.3.0
- apiVersion: v1
appVersion: 0.2.7
created: "2025-01-14T11:44:17.697749932Z"
description: Workflow Configurator
digest: a0794c55a1b96949175371f51b13832c0353a9594e610b7c705d1a15a9df61f1
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.2.7.tgz
version: 0.2.7
- apiVersion: v1
appVersion: 0.2.4
created: "2025-01-14T11:44:17.697537535Z"
description: Workflow Configurator
digest: e962ff871a95793cdb34f0b30da5241be266904b79f30d73b20d24c1bb635d3a
name: atlas-application
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-application-0.2.4.tgz
version: 0.2.4
atlas-gql-mesh:
- apiVersion: v1
appVersion: 0.4.32
created: "2025-01-14T11:44:17.71702259Z"
description: atlas-gql-mesh (GQL server)
digest: 2da98034e53c1d7fc9d73dd6a0454b3ce5ed698425c297cb8bdadd9aa3041f6a
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.32.tgz
version: 0.4.32
- apiVersion: v1
appVersion: 0.4.31
created: "2025-01-14T11:44:17.71679293Z"
description: atlas-gql-mesh (GQL server)
digest: d1fa452ebd1f9e42a38a084bd3c5e1e364a843f2c70ab3de30ac41e9a5cf6be9
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.31.tgz
version: 0.4.31
- apiVersion: v1
appVersion: 0.4.30
created: "2025-01-14T11:44:17.716567428Z"
description: atlas-gql-mesh (GQL server)
digest: 1758eccf441539a232f3e206b212ac17e49a742e72caadfc3456203db0ba12c3
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.30.tgz
version: 0.4.30
- apiVersion: v1
appVersion: 0.4.29
created: "2025-01-14T11:44:17.71609779Z"
description: atlas-gql-mesh (GQL server)
digest: abc2225e32db771c53ba08eb682a58414db17b795c87b5d8fa4e3759c82af3b7
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.29.tgz
version: 0.4.29
- apiVersion: v1
appVersion: 0.4.28
created: "2025-01-14T11:44:17.715870666Z"
description: atlas-gql-mesh (GQL server)
digest: d595614be278e871862805178e41b176f62145c24e2e9b2e23ab9537b0badb14
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.28.tgz
version: 0.4.28
- apiVersion: v1
appVersion: 0.4.26
created: "2025-01-14T11:44:17.715640916Z"
description: atlas-gql-mesh (GQL server)
digest: 02d5fc1470fc8b28187ac2129c135db0fa142b4511e3d4280f2d2f23e4cf1e55
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.26.tgz
version: 0.4.26
- apiVersion: v1
appVersion: 0.4.25
created: "2025-01-14T11:44:17.715390388Z"
description: atlas-gql-mesh (GQL server)
digest: 82eff94aa583aed387a2509f0de242bf77c0f9da2e22c62d304ea389ee196437
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.25.tgz
version: 0.4.25
- apiVersion: v1
appVersion: 0.4.24
created: "2025-01-14T11:44:17.715160609Z"
description: atlas-gql-mesh (GQL server)
digest: ed37a6a45f47849ee49993cb5534acba5f4f96fdfc6000a83748f2921b03525a
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.24.tgz
version: 0.4.24
- apiVersion: v1
appVersion: 0.4.23
created: "2025-01-14T11:44:17.714928845Z"
description: atlas-gql-mesh (GQL server)
digest: a49943351207aa268ebb87f20d4e138c6f5510ec7c6bc8744c9e37561e0f8a30
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.23.tgz
version: 0.4.23
- apiVersion: v1
appVersion: 0.4.22
created: "2025-01-14T11:44:17.714689317Z"
description: atlas-gql-mesh (GQL server)
digest: f06a71d7ebf0e2a8b41c7f1700d1cf505246b6b357c1ece23f6fcb22a7505db1
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.22.tgz
version: 0.4.22
- apiVersion: v1
appVersion: 0.4.21
created: "2025-01-14T11:44:17.714416928Z"
description: atlas-gql-mesh (GQL server)
digest: fdad0860965d6579939d9a7c80c06791b2574d757ecc3caab5943ab5743c58b9
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.21.tgz
version: 0.4.21
- apiVersion: v1
appVersion: 0.4.20
created: "2025-01-14T11:44:17.714174685Z"
description: atlas-gql-mesh (GQL server)
digest: 3203d5e1e8b83d6c43d24ebbf6f959ee12b93ab04ab484e3fdda0ff824d911b6
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.20.tgz
version: 0.4.20
- apiVersion: v1
appVersion: 0.4.19
created: "2025-01-14T11:44:17.713554506Z"
description: atlas-gql-mesh (GQL server)
digest: 3a9d190bdfc5558e73770fcb732434b37818b80281debb3dce682fa981322d20
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.19.tgz
version: 0.4.19
- apiVersion: v1
appVersion: 0.4.18
created: "2025-01-14T11:44:17.713245608Z"
description: atlas-gql-mesh (GQL server)
digest: 693f7a361a014977652d7623618b90256429de6f8dcb9b5b4b4f6a3644562b56
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.18.tgz
version: 0.4.18
- apiVersion: v1
appVersion: 0.4.17
created: "2025-01-14T11:44:17.712942932Z"
description: atlas-gql-mesh (GQL server)
digest: 1f08f5beab37acdbaba18e461dfeb3812f7cab2610fe3b9946c7c1cdce83be54
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.17.tgz
version: 0.4.17
- apiVersion: v1
appVersion: 0.4.16
created: "2025-01-14T11:44:17.712302725Z"
description: atlas-gql-mesh (GQL server)
digest: b648363e9365e935a0d4b4bb8f6ae1c09e16bf697f6b4f8c17c4dee07587a64f
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.16.tgz
version: 0.4.16
- apiVersion: v1
appVersion: 0.4.15
created: "2025-01-14T11:44:17.711713393Z"
description: atlas-gql-mesh (GQL server)
digest: 5ccd24a47108f90d1cc3a45ed5da13c75c7e863cb8ca72ac784676b3c21a4e2c
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.15.tgz
version: 0.4.15
- apiVersion: v1
appVersion: 0.4.14
created: "2025-01-14T11:44:17.711484806Z"
description: atlas-gql-mesh (GQL server)
digest: 70ba77700df85e190e96ded804d044002b4b7b53dd04b5581da537bd1eb85335
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.14.tgz
version: 0.4.14
- apiVersion: v1
appVersion: 0.4.13
created: "2025-01-14T11:44:17.711245148Z"
description: atlas-gql-mesh (GQL server)
digest: 40757289ee74f2d4e6367f0976f265f2a1e483fc00a4136047845c23b0ca1bfd
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.13.tgz
version: 0.4.13
- apiVersion: v1
appVersion: 0.4.12
created: "2025-01-14T11:44:17.711020868Z"
description: atlas-gql-mesh (GQL server)
digest: 2208252de67d2064688c6e445f581341f2f65be6fb97f3dffb0301edac7e0e22
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.12.tgz
version: 0.4.12
- apiVersion: v1
appVersion: 0.4.11
created: "2025-01-14T11:44:17.710792291Z"
description: atlas-gql-mesh (GQL server)
digest: c8234d7b372fd85198e0630f23cf51e272dd0106dac4de5cb5c8f71e5d77aa1c
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.11.tgz
version: 0.4.11
- apiVersion: v1
appVersion: 0.4.10
created: "2025-01-14T11:44:17.710565568Z"
description: atlas-gql-mesh (GQL server)
digest: 4c2b3f64e20c02a4f16061b47f66c203efc127183f567b68952e931a24090f7d
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.10.tgz
version: 0.4.10
- apiVersion: v1
appVersion: 0.4.9
created: "2025-01-14T11:44:17.719090926Z"
description: atlas-gql-mesh (GQL server)
digest: fed328ace6c167dfaa649af5ac607373ff8a67665998aa86e68604e02603f5ba
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.9.tgz
version: 0.4.9
- apiVersion: v1
appVersion: 0.4.8
created: "2025-01-14T11:44:17.718837412Z"
description: atlas-gql-mesh (GQL server)
digest: 30ab944c2ca3ed8afc18db1c3ff83da4c419435dfab68cd82b66b91d070c1b52
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.8.tgz
version: 0.4.8
- apiVersion: v1
appVersion: 0.4.7
created: "2025-01-14T11:44:17.718406246Z"
description: atlas-gql-mesh (GQL server)
digest: 9b2ae79ca406ff191867a5adb3e639c05247ef30ab30cb4d8487ea477980f337
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.7.tgz
version: 0.4.7
- apiVersion: v1
appVersion: 0.4.6
created: "2025-01-14T11:44:17.717728409Z"
description: atlas-gql-mesh (GQL server)
digest: 8b2568ebdaf20c7ddae513b9cc0efacbd6cd96fb401f4fc17eef6e4f0a48927d
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.6.tgz
version: 0.4.6
- apiVersion: v1
appVersion: 0.4.5
created: "2025-01-14T11:44:17.71749357Z"
description: atlas-gql-mesh (GQL server)
digest: 1564bc7992e3ffdc5bce5153869522552bbc640026dcc5edb5910651ba2c74c3
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.5.tgz
version: 0.4.5
- apiVersion: v1
appVersion: 0.4.4
created: "2025-01-14T11:44:17.717247239Z"
description: atlas-gql-mesh (GQL server)
digest: 466d942c09f35f2bd4eff27f3e965fc7e37bbde4432b54e72a5bbd9706907d81
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.4.tgz
version: 0.4.4
- apiVersion: v1
appVersion: 0.4.3
created: "2025-01-14T11:44:17.716323332Z"
description: atlas-gql-mesh (GQL server)
digest: 01f9c84b175418d298918d7bfbdc4781e2f34aaa85e3d5604ddf54310d5d24b2
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.3.tgz
version: 0.4.3
- apiVersion: v1
appVersion: 0.4.2
created: "2025-01-14T11:44:17.713913226Z"
description: atlas-gql-mesh (GQL server)
digest: 9fa9d6ff18ac90cf8c1f12c7ec21ce0e96d3fec18734ada59f1c8d80f6453308
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.2.tgz
version: 0.4.2
- apiVersion: v1
appVersion: 0.4.1
created: "2025-01-14T11:44:17.710324878Z"
description: atlas-gql-mesh (GQL server)
digest: f62f15d300346afd8a0c19fe16bb83dc964b46719701b8eb097e1dd024d58128
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.1.tgz
version: 0.4.1
- apiVersion: v1
appVersion: 0.4.0
created: "2025-01-14T11:44:17.710098163Z"
description: atlas-gql-mesh (GQL server)
digest: 27828d829c50f3fc9f86e9dff7d16b98d4a04a33eaa3342bcbf96a478bc3f9bb
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.4.0.tgz
version: 0.4.0
- apiVersion: v1
appVersion: 0.3.9
created: "2025-01-14T11:44:17.709869857Z"
description: atlas-gql-mesh (GQL server)
digest: aa30b6e4b5240e96949351387125a66eb434055e4153159955d2d0e77db0910a
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.9.tgz
version: 0.3.9
- apiVersion: v1
appVersion: 0.3.8
created: "2025-01-14T11:44:17.70963642Z"
description: atlas-gql-mesh (GQL server)
digest: 52812b4194c0d85ee2caf6901c3054ae7aca386abe85823b7821c55038b5169e
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.8.tgz
version: 0.3.8
- apiVersion: v1
appVersion: 0.3.7
created: "2025-01-14T11:44:17.709388737Z"
description: atlas-gql-mesh (GQL server)
digest: 7e670c3ea16f10dd319513237d254fe166b42268067301afc24b0087a730224c
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.7.tgz
version: 0.3.7
- apiVersion: v1
appVersion: 0.3.6
created: "2025-01-14T11:44:17.709150792Z"
description: atlas-gql-mesh (GQL server)
digest: 1e761d6c0d1ece67c39ed3db684c9acf4f38dfaaa6d269feae2647b26ce1191b
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.6.tgz
version: 0.3.6
- apiVersion: v1
appVersion: 0.3.5
created: "2025-01-14T11:44:17.70891398Z"
description: atlas-gql-mesh (GQL server)
digest: fb2f73f8d28bd06fa726d0bfede5092256880334464b1d732789a31313087c84
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.5.tgz
version: 0.3.5
- apiVersion: v1
appVersion: 0.3.4
created: "2025-01-14T11:44:17.708674482Z"
description: atlas-gql-mesh (GQL server)
digest: 5713fe62d3f0200d0b6b685cec74cf1c6f82183ae4671b9e1e9fe21949c290fe
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.4.tgz
version: 0.3.4
- apiVersion: v1
appVersion: 0.3.3
created: "2025-01-14T11:44:17.708403566Z"
description: atlas-gql-mesh (GQL server)
digest: 48dd4e4ce36fce0b8cea1f1a6c9f778b6957698b7fae20b5679652752e07aac1
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.3.tgz
version: 0.3.3
- apiVersion: v1
appVersion: 0.3.2
created: "2025-01-14T11:44:17.708167645Z"
description: atlas-gql-mesh (GQL server)
digest: f889881d70501d13d594ae7b9b6c22afaa0173d5fe877932991682a5947e7866
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.2.tgz
version: 0.3.2
- apiVersion: v1
appVersion: 0.3.1
created: "2025-01-14T11:44:17.707927806Z"
description: atlas-gql-mesh (GQL server)
digest: 95cd80610f192f350704015e8d8c57e39bcb8d519ea6d9517db0c20819f060e2
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.1.tgz
version: 0.3.1
- apiVersion: v1
appVersion: 0.3.0
created: "2025-01-14T11:44:17.707677628Z"
description: atlas-gql-mesh (GQL server)
digest: 4d261846bfc36b6912c70f03bb7b428a8236b4104b703dd40749c5fc6153b0c1
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.3.0.tgz
version: 0.3.0
- apiVersion: v1
appVersion: 0.2.7
created: "2025-01-14T11:44:17.7073793Z"
description: atlas-gql-mesh (GQL server)
digest: 07491ca84468c8786f99b9eef9b301a261333243ff945b2afb0bc0448766ae38
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.2.7.tgz
version: 0.2.7
- apiVersion: v1
appVersion: 0.2.4
created: "2025-01-14T11:44:17.707099688Z"
description: atlas-gql-mesh (GQL server)
digest: 62e714573bb7ba7a4265c30c23dcc14c0cf9b12559d506f395278c14075fa183
name: atlas-gql-mesh
type: application
urls:
- https://osstotalsoft.github.io/helm-charts/atlas-gql-mesh-0.2.4.tgz
version: 0.2.4
platform-controllers:
- apiVersion: v1
appVersion: 1.8.11
created: "2025-01-14T11:44:17.756841945Z"
description: A Helm chart for TotalSoft platform controllers
digest: a48a9669e62be1d56f28a91e35943cdf8a844634eef6909feb1cbbc5d55e38f4
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.11.tgz
version: 1.8.11
- apiVersion: v1
appVersion: 1.8.10
created: "2025-01-14T11:44:17.756248185Z"
description: A Helm chart for TotalSoft platform controllers
digest: c04620de4462b947261aaf20035ab57e798af048e981ed2fff4f10f347a4f3ac
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.10.tgz
version: 1.8.10
- apiVersion: v1
appVersion: 1.8.9
created: "2025-01-14T11:44:17.763274889Z"
description: A Helm chart for TotalSoft platform controllers
digest: 2595aa929ca9354c99d8d7cfcf4dea2f7acfc9a208b54e5d3e34f4faeb5c641f
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.9.tgz
version: 1.8.9
- apiVersion: v1
appVersion: 1.8.8
created: "2025-01-14T11:44:17.762677822Z"
description: A Helm chart for TotalSoft platform controllers
digest: db7ab044b0ba06b187421588fe3bb874e82e97e22eb95a2d08db54863c9d1421
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.8.tgz
version: 1.8.8
- apiVersion: v1
appVersion: 1.8.7
created: "2025-01-14T11:44:17.762071108Z"
description: A Helm chart for TotalSoft platform controllers
digest: 0d062fe626a5ee67c5aa13760212c76421e7ec685990a63d37aefb73145ec181
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.7.tgz
version: 1.8.7
- apiVersion: v1
appVersion: 1.8.6
created: "2025-01-14T11:44:17.761455768Z"
description: A Helm chart for TotalSoft platform controllers
digest: 40a7a51eb17bf6927a0eaeac808701659d7f07fa32471791f3f0b9962fc83deb
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.6.tgz
version: 1.8.6
- apiVersion: v1
appVersion: 1.8.5
created: "2025-01-14T11:44:17.760829096Z"
description: A Helm chart for TotalSoft platform controllers
digest: ec4abd2c8dee3ee2abd92f05146167d07a6a79ef066aec76a1693f9f4efec65c
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.5.tgz
version: 1.8.5
- apiVersion: v1
appVersion: 1.8.4
created: "2025-01-14T11:44:17.759327822Z"
description: A Helm chart for TotalSoft platform controllers
digest: f60077235b9539b11cd1d3bc87a58c42da6803066def594930838025ec290fb2
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.4.tgz
version: 1.8.4
- apiVersion: v1
appVersion: 1.8.3
created: "2025-01-14T11:44:17.758251881Z"
description: A Helm chart for TotalSoft platform controllers
digest: 6751aca10fab6eb790aa07991cdf2070d1a7c5226d79b04f46e3d3720dcadfa1
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.3.tgz
version: 1.8.3
- apiVersion: v1
appVersion: 1.8.2
created: "2025-01-14T11:44:17.757372788Z"
description: A Helm chart for TotalSoft platform controllers
digest: 2713f8ddab9abc571a14dc86bca5c1c9ca4a6b6bb0b1a22cdd87f1dc4617180c
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.2.tgz
version: 1.8.2
- apiVersion: v1
appVersion: 1.8.1
created: "2025-01-14T11:44:17.755661078Z"
description: A Helm chart for TotalSoft platform controllers
digest: 2544071c1dd0433792a5de79e67d3897f9b586ebbfae8dd404929c6b4d32d3aa
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.1.tgz
version: 1.8.1
- apiVersion: v1
appVersion: 1.8.0
created: "2025-01-14T11:44:17.755101271Z"
description: A Helm chart for TotalSoft platform controllers
digest: 8bdb3baf133e3df3b4454eca85cdf751b5cfae232fe667dfcb7e64ee50174b3b
name: platform-controllers
urls:
- https://osstotalsoft.github.io/helm-charts/platform-controllers-1.8.0.tgz
version: 1.8.0
- apiVersion: v1
appVersion: 1.7.0
created: "2025-01-14T11:44:17.754172525Z"
description: A Helm chart for TotalSoft platform controllers
digest: 321c92db74c21078da4e97f7ce1ebbef925e64a0032619af7b5d76956070e1fd
name: platform-controllers
urls: