-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.yaml
2268 lines (2268 loc) · 89.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:
cluster-bootstrap:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.04638334Z"
description: Helm Charts to Kubernetes Cluster Bootstrap
digest: 96e931bad177e617beae2e0c90571b35d3ed229484f6c8eeca3e9c4f38c8241e
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.049995942Z"
description: Helm Charts to Kubernetes Cluster Bootstrap
digest: a27dcaf0f81e5cc22a16b0d8b45f4eecf30ecdc539a644df1d5d4e1037ba612a
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.049436242Z"
description: Helm Charts to Kubernetes Cluster Bootstrap
digest: c18aa98b575b83a71b8a3ba162dcac95f16f4aa282f7ac95e93c76071720f4a3
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.048872842Z"
description: Helm Charts to Kubernetes Cluster Bootstrap
digest: 7e81acc2cf387bdadfa98ac677538aa6b16920197ef18ff4b2964405fcc4ffd0
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.048337341Z"
description: Helm Charts to Kubernetes Cluster Bootstrap
digest: 52471bb333575cffda41396c7d53ebe17561af2b7186e2220d85aff8eb921f46
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.047905941Z"
description: Set of helm charts for Kubernetes Cluster bootstrap
digest: 5a56d58caa49423bfcfefaff011d2d233b588cce2919ded2bcce6976e8097b2b
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.047560341Z"
description: Set of helm charts for Kubernetes Cluster bootstrap
digest: 575dd85f9ca057f6059830bf3f579b533e9afb98de4e2beec4809549b5037c50
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.047191041Z"
description: A Helm chart for Kubernetes
digest: d81191dfa82b0d3ea98857dd330488a5ddf42823773fb8b49f4869030be4193e
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.04678254Z"
description: A Helm chart for Kubernetes
digest: 281412c136aa9ce7a87e565e44851c2f8aadc08a70d43d625d47611ef06651e6
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.04594264Z"
description: A Helm chart for Kubernetes
digest: 099f8ec1cbb0ea144224c27f86704ce2d01b964379d2ab45c68e722e6a671caa
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-26T18:59:52.045475139Z"
description: A Helm chart for Kubernetes
digest: 7d78c837daa583e75ac5953a6be2b264efa061b72a95fec47c441964df5905f5
name: cluster-bootstrap
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/cluster-bootstrap-0.1.0.tgz
version: 0.1.0
devxp-app:
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-30T18:37:18.426410858Z"
description: Helm Charts for default DevXP-Tech Application
digest: 67fa33592a3eb9d1a82d434d916fd8f003eb618d690477abe50c978bd01668fb
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- devxp-app-0.2.23.tgz
version: 0.2.23
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.183527037Z"
description: Helm Charts for default DevXP-Tech Application
digest: c49469ee6e337495f00ab737b2acc03bcc08ea724a5398462d94ff278954e1a2
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.22.tgz
version: 0.2.22
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.181811836Z"
description: Helm Charts for default DevXP-Tech Application
digest: 1155a1dc78dc5d0a5dd7e9cbd90ba49ab25933f26f314a55e1265b6327558ffb
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.21.tgz
version: 0.2.21
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.180349735Z"
description: Helm Charts for default DevXP-Tech Application
digest: 0f027fef2141e65c0b6dd420d6520ecbf910e8689277179da89676fa75d8e42e
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.20.tgz
version: 0.2.20
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.178242734Z"
description: Helm Charts for default DevXP-Tech Application
digest: a7605c1609589c5cb636a670ff56eb5ee55ebf41c0dfbbeb9836fb9981993906
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.19.tgz
version: 0.2.19
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.176107032Z"
description: Helm Charts for default DevXP-Tech Application
digest: ad39c4ab2a06394b797611a8a97f356d6d1430ab2980ba20290e7421fc49949f
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.18.tgz
version: 0.2.18
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.174626831Z"
description: Helm Charts for default DevXP-Tech Application
digest: db6b1cfecc96cc4633fabbf29a4c8c360c27db83fa5c316086ebe578a81de1bc
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.17.tgz
version: 0.2.17
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.17307163Z"
description: Helm Charts for default DevXP-Tech Application
digest: 6f71e5c10657d9fa2794f3a6368d3ce0f0f953dc0211b43082608f8a587564f5
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.16.tgz
version: 0.2.16
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.171404529Z"
description: Helm Charts for default DevXP-Tech Application
digest: eada659a0cb1a72c85348ef5f11544f61cb7a5b0359f1adfa3e7fbefb9ceee88
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.15.tgz
version: 0.2.15
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.169867028Z"
description: Helm Charts for default DevXP-Tech Application
digest: 0ac8d23f9467ebc15f5b0a93e59eef0c939b4ad34e250258a1c5164ca3896c69
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.14.tgz
version: 0.2.14
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.168430527Z"
description: Helm Charts for default DevXP-Tech Application
digest: 75ace6bd0ae43d97c45e12dc39863b760dc47a026d7d49eb8d365afe2bb5bc12
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.13.tgz
version: 0.2.13
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.166931525Z"
description: Helm Charts for default DevXP-Tech Application
digest: cf9abb5858b41bb022d2265f46dc74b445db188f05800b01925702cd38d09cf9
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.12.tgz
version: 0.2.12
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.165184124Z"
description: Helm Charts for default DevXP-Tech Application
digest: 603b24d69ad79e53c2c9ead349ea6dc3c9fb52e09103be6c67595521bb15f152
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.11.tgz
version: 0.2.11
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.163235323Z"
description: Helm Charts for default DevXP-Tech Application
digest: ae84d23e0aade5da6bff4ae98e3f9945a2a1e31f6c0b678d7e47c5e959529b6c
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.10.tgz
version: 0.2.10
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.189168941Z"
description: Helm Charts for default DevXP-Tech Application
digest: 6a37a38d84c0f9d2b30050e979e9f462f64d1f920cbb25c6d962c3a77db43593
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.9.tgz
version: 0.2.9
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.18781954Z"
description: Helm Charts for default DevXP-Tech Application
digest: 550f7fbd74713f89661499d048f69cfe424e7925e4ae189ebf412e774a88238e
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
url: www.diegoluisi.eti.br
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.8.tgz
version: 0.2.8
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.186295139Z"
description: Helm Charts for default DevXP-Tech Application
digest: 11018528395f4fd8e4db37e5728a721d1069e47cfd894451e648e8e38f59a4ee
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.7.tgz
version: 0.2.7
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.184896538Z"
description: Helm Charts for default DevXP-Tech Application
digest: 8fdb682faada51abb80a3c009a3988dba507da188e650bd9e8aa4e71ae126dc9
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.6.tgz
version: 0.2.6
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.160957921Z"
description: Helm Charts for default DevXP-Tech Application
digest: 427df556fcbfbe9102fe8e16a54ed06e9a1df287175b6e48ad6fd38a1afb1a19
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.1.tgz
version: 0.2.1
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.15945312Z"
description: Helm Charts for default DevXP-Tech Application
digest: a964a428a27bd8edb0cd53bcf995b13336a91ea7ef2bf391373afd64ad02af6e
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.158027719Z"
description: Helm Charts for default DevXP-Tech Application
digest: 76a4ab2b3ded428eeb55cf5fd156ed3c5d65b79ee7992abdd0a2a6a97c94a22f
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.99.tgz
version: 0.1.99
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.156562118Z"
description: Helm Charts for default DevXP-Tech Application
digest: 362bc9e190dfb2ee1b80abbba4524c91420d66192213e8ed0fddeca1478e07b3
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.98.tgz
version: 0.1.98
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.155019617Z"
description: Helm Charts for default DevXP-Tech Application
digest: eed145a40367ce1a7e8ae2fd18240a47eabc5dbba25e699ac80cce94ae276dad
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.97.tgz
version: 0.1.97
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.153695916Z"
description: Helm Charts for default DevXP-Tech Application
digest: d0d8a68503261d3b1d4f7f11833ca21c525b45bf762179b03e054b7130d1aa88
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.96.tgz
version: 0.1.96
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.152389815Z"
description: Helm Charts for default DevXP-Tech Application
digest: e36a23fdf62450696b37228400ed9488c1a67667e21a796d88f8ec436a22b07f
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.95.tgz
version: 0.1.95
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.151220114Z"
description: Helm Charts for default DevXP-Tech Application
digest: c8a0f65152cfaee69c2a8469e6ea74a3afb296060eb96d66e4175ff08aead99d
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.94.tgz
version: 0.1.94
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.149044813Z"
description: Helm Charts for default DevXP-Tech Application
digest: af402614881dae2ac8d7ccef8ddaa2b1e52f9a7b572c7f6891da79c17624bdd9
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.93.tgz
version: 0.1.93
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.147107211Z"
description: Helm Charts for default DevXP-Tech Application
digest: 8e641f671d93007e04da104a4dd73867cdee7b4a81ba797977e970785639c2a8
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.92.tgz
version: 0.1.92
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.145896811Z"
description: Helm Charts for default DevXP-Tech Application
digest: 66ebff49d372c07840762b742d30ed5831e1ecd6ac6272614dd9e60b06ce131a
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.91.tgz
version: 0.1.91
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.14463851Z"
description: Helm Charts for default DevXP-Tech Application
digest: 4c479ca000a26d1456cc599480bbfbefd9b0d9cf24beaec57c7a561705f85a2c
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.90.tgz
version: 0.1.90
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.142783908Z"
description: Helm Charts for default DevXP-Tech Application
digest: 5420e2b70f49dc38b41f1b06e38bd84eb876b9455c86436905d79a4d05374bde
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.89.tgz
version: 0.1.89
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.141452707Z"
description: Helm Charts for default DevXP-Tech Application
digest: 628550cd7e3ff72aa93ab51d6f839895bf383e40eff48b2c2699c78666c94351
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.88.tgz
version: 0.1.88
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.140271707Z"
description: Helm Charts for default DevXP-Tech Application
digest: 46da7a2e8e9341ae4c3fc5fad01eb98e8be656a79b96fd7530c5523f1cebee91
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.87.tgz
version: 0.1.87
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.139111906Z"
description: Helm Charts for default DevXP-Tech Application
digest: 9acd770a2f5ea6a4e695d91deb6a085f04eb878a6fea4db36a66b77b818c94c6
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.86.tgz
version: 0.1.86
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.137988305Z"
description: Helm Charts for default DevXP-Tech Application
digest: 2ee913f8c32769f429bde5625c17f33dfc631e640ba21a2f6ffe65a6dc729abf
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.83.tgz
version: 0.1.83
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.136863504Z"
description: Helm Charts for default DevXP-Tech Application
digest: dfa8a03823a954baacaf2678ad15ae3c0d122e1a0a240791bf2ccf0408dd464e
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.82.tgz
version: 0.1.82
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.135241703Z"
description: Helm Charts for default DevXP-Tech Application
digest: 7980bdfadb934b25d2404611d76e57cdc1818a7a027f163256d18e08830c81e5
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.81.tgz
version: 0.1.81
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.133579202Z"
description: Helm Charts for default DevXP-Tech Application
digest: b3c0791ffc82b8d541b01b0f186a66f60670164a7b8df01c3981040e0d38fe22
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.80.tgz
version: 0.1.80
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.1314833Z"
description: Helm Charts for default DevXP-Tech Application
digest: 9d71aa0d47afdb52a9fa6294e572ed34b86d235fd03472e67cfab603764a90db
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.79.tgz
version: 0.1.79
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.1303884Z"
description: Helm Charts for default DevXP-Tech Application
digest: 1a2d04b81c0838b130679cef8e26c956e34e42b6a6ec7ed8509117985d9565b4
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.78.tgz
version: 0.1.78
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.129273699Z"
description: Helm Charts for default DevXP-Tech Application
digest: 111400d68ebef0129118295256ffbb496e79253860a1286410f3cac8555bd596
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.77.tgz
version: 0.1.77
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.128066998Z"
description: Helm Charts for default DevXP-Tech Application
digest: 432273e7a6dfcd84aeafb1689dc0bed82d2456484e2d3224365cb5cba0ee3367
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.76.tgz
version: 0.1.76
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.126956397Z"
description: Helm Charts for default DevXP-Tech Application
digest: 27cb1a88999ea161775f6dd9fdb14e0928dd277ae6b599201686b43c7094a2cb
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.75.tgz
version: 0.1.75
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.125871696Z"
description: Helm Charts for default DevXP-Tech Application
digest: f0c18a1bf1b64cc857e274111aa74a63d8c9b4045ecae3c30c886c9e6402f05d
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.74.tgz
version: 0.1.74
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.124816496Z"
description: Helm Charts for default DevXP-Tech Application
digest: cc339ec1e7a108e458267a7ca9c6fddcb7a04b4a05f2b597ba79120f01afe57d
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.73.tgz
version: 0.1.73
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.123674795Z"
description: Helm Charts for default DevXP-Tech Application
digest: b156f414daa9a93af6a740009fa6518f8af7a48f026d9d033b9a3e7f84dc994b
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.72.tgz
version: 0.1.72
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.122556294Z"
description: Helm Charts for default DevXP-Tech Application
digest: 14d67c46b487f894a0a759c09cca7277c7734d17eea8a458fd0e37bfb88df028
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.71.tgz
version: 0.1.71
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.120717693Z"
description: Helm Charts for default DevXP-Tech Application
digest: c6f5f90dcc6c538151b6a9f1b6a517cd1d2d85ddee2254ff31a69e21497de61f
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.70.tgz
version: 0.1.70
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.117710891Z"
description: Helm Charts for default DevXP-Tech Application
digest: 7875e738a3774146161b95ae0042b9e4bad52f0238e0660ddfe62ae7f3a40df2
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.69.tgz
version: 0.1.69
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.11658989Z"
description: Helm Charts for default DevXP-Tech Application
digest: 34eb18a7d3b7a8db1f723124e894157b2e0c086de67ee7661866a86ddf7ca8c6
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.68.tgz
version: 0.1.68
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.115536889Z"
description: Helm Charts for default DevXP-Tech Application
digest: 458509e0ed16a5a3d9fceeaf23f20516871c67a9def163781e54c83562e98afc
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.67.tgz
version: 0.1.67
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.114428588Z"
description: Helm Charts for default DevXP-Tech Application
digest: a4425018b24a225a0e9f7f2c0bbdce9031f4f921dcce61008c41b912120c6373
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.66.tgz
version: 0.1.66
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.113311487Z"
description: Helm Charts for default DevXP-Tech Application
digest: 37207de90a3409197a383f5b7f6827ee90451f41dfb78c06bfc2c686aeac39b9
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.65.tgz
version: 0.1.65
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.112252987Z"
description: Helm Charts for default DevXP-Tech Application
digest: c1d0b2e9ee9c0cf0fd99b6f444f5baf4e70ff80b41dd07c2b28554d09c9c2770
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.64.tgz
version: 0.1.64
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.111019586Z"
description: Helm Charts for default DevXP-Tech Application
digest: 074dfb44fb15c98f040b31792563702e44602a7b3e9c9e1bdb3bf82b8aba4836
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.62.tgz
version: 0.1.62
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.109843485Z"
description: Helm Charts for default DevXP-Tech Application
digest: 3647dbcc19c572b0db977bafc7ecc381b333d70f0180b908b990d54573ab07bc
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.61.tgz
version: 0.1.61
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.108778784Z"
description: Helm Charts for default DevXP-Tech Application
digest: d44ba91c11b28f55db138de2f09179799599ea7c6eb550f554f0240d67c0a04e
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.60.tgz
version: 0.1.60
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.106909683Z"
description: Helm Charts for default DevXP-Tech Application
digest: 3e1753eaa9965178686868456bb0f511fecb48540ad1b4e9424b610928e081a9
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.59.tgz
version: 0.1.59
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.104953082Z"
description: Helm Charts for default DevXP-Tech Application
digest: 1f96680bc89682bc12e6766dff8f7bd7429ef239119559c524535a8e7b9dfe32
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.58.tgz
version: 0.1.58
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.10341988Z"
description: Helm Charts for default DevXP-Tech Application
digest: c14f59847a4ed282a197681e241138814b9a6e1d125242bd00d1eb7740f08d06
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.57.tgz
version: 0.1.57
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.10235958Z"
description: Helm Charts for default DevXP-Tech Application
digest: 6160c2504cead6c17ac09789ee6da21651005717ef059fe83cf0ac70338c1682
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.56.tgz
version: 0.1.56
- apiVersion: v2
appVersion: 1.0.0
created: "2023-10-26T18:59:52.101064079Z"
description: Helm Charts for default DevXP-Tech Application
digest: 8aa2676eb2292db57464ea493256b0783276b71733a3d435881f9e791e666887
icon: https://github.com/devxp-tech/helm-charts/blob/main/charts/tooling/helm-icon.png
maintainers:
- email: [email protected]
name: diegoluisi
name: devxp-app
type: application
urls:
- https://raw.githubusercontent.com/devxp-tech/helm-charts/artifacts/devxp-app-0.1.55.tgz
version: 0.1.55
- apiVersion: v2
appVersion: 1.0.0