forked from rancher/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
executable file
·7263 lines (7263 loc) · 282 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:
fleet:
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.9-rc3
created: "2022-02-25T11:29:45.857394873+05:30"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 2dabc1313357142e2aa49fef2732e5ac072458552851b4d91b0dfa231f3f9d49
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.3+up0.3.9-rc3.tgz
version: 100.0.3+up0.3.9-rc3
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.8
created: "2022-02-25T11:29:45.856424718+05:30"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: a8ae4d7aeb2be9f8efcedcbd294a4d1df4e74ce9b7c1d5e6cd6538d4fcdbdb9c
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.2+up0.3.8.tgz
version: 100.0.2+up0.3.8
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.7
created: "2022-02-25T11:29:45.855800546+05:30"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: b1f62d34bcf452710dd426b1bb430d08f5e2b828801406926877590d6401c917
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.1+up0.3.7.tgz
version: 100.0.1+up0.3.7
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.6
created: "2022-02-25T11:29:45.855184665+05:30"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: e2342417542f4c658f556dc07f91a42bbd577cf242a0f0d84bbc4ebc9ef0eeec
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.0+up0.3.6.tgz
version: 100.0.0+up0.3.6
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.5
created: "2022-02-25T11:29:45.854608613+05:30"
description: Fleet Manager - GitOps at Scale
digest: 0823847ad1d1c23b55ed84e80f24627cf34cafcfee5065bff734ab7c3197627c
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.500.tgz
version: 0.3.500
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.4
created: "2022-02-25T11:29:45.854046636+05:30"
description: Fleet Manager - GitOps at Scale
digest: 417949f459d4840f4cf17a7349aff002d56a6fd0f8cf89f5bf45bb3f2f6a3fac
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.400.tgz
version: 0.3.400
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.3
created: "2022-02-25T11:29:45.853466678+05:30"
description: Fleet Manager - GitOps at Scale
digest: a8d2031593cea52be7fde9018ee894918976590cd8cb5bebeb36ce949495d277
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.300.tgz
version: 0.3.300
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.2
created: "2022-02-25T11:29:45.852599316+05:30"
description: Fleet Manager - GitOps at Scale
digest: 19a4310568f430bb09a8a21f46a3418ada4ad0f1a69b605a53330cbde24263ab
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.200.tgz
version: 0.3.200
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.1
created: "2022-02-25T11:29:45.851745665+05:30"
description: Fleet Manager - GitOps at Scale
digest: 3d591a28c9bc370e0abf49043a0c0ee3fb23a7cdd0f5082d8cb262c320d1ec1a
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.100.tgz
version: 0.3.100
- annotations:
catalog.cattle.io/auto-install: fleet-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/experimental: "true"
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.0
created: "2022-02-25T11:29:45.850698684+05:30"
description: Fleet Manager - GitOps at Scale
digest: 7820f4518468d8d425b2f354873ca27bc8ce94848affe37b4cedf8b5c3b8a089
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.000.tgz
version: 0.3.000
fleet-agent:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.9-rc3
created: "2022-02-25T11:29:45.86334806+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: a18f0d0fbcaf060c9be1bb53fe3eb9756badf4ef21958b568d41f79478c34d05
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-100.0.3+up0.3.9-rc3.tgz
version: 100.0.3+up0.3.9-rc3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.8
created: "2022-02-25T11:29:45.862894228+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: 01a87b6d2a1e0125626fc861eead553e85f128e1ac4d0b05af287f4aae034693
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-100.0.2+up0.3.8.tgz
version: 100.0.2+up0.3.8
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.7
created: "2022-02-25T11:29:45.862508207+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: 546c187802c4a69c7c6b398a36f9ed6826d5127f50ff641a77ee7aa09f02dcc5
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-100.0.1+up0.3.7.tgz
version: 100.0.1+up0.3.7
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.6
created: "2022-02-25T11:29:45.862095476+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: 89db2b10c09a29a521bbfd6044c2784b6c30b785fbaf4d3795c8f89e6c3103ea
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-100.0.0+up0.3.6.tgz
version: 100.0.0+up0.3.6
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.5
created: "2022-02-25T11:29:45.861709265+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: abcdc8d42b01c2f80fcf63f555dbc3c0e3c1882e656abd03fd9b391b85441dac
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.500.tgz
version: 0.3.500
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.4
created: "2022-02-25T11:29:45.861184356+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: b51b77d1684557f34955b5268a221969af49411dcbee4b06bcb7fd2ffb226cc3
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.400.tgz
version: 0.3.400
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.3
created: "2022-02-25T11:29:45.860450124+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: bc8e549b86bed50e2a3cf7d25fc51f3a7f0404390fad6d1239fe3a4515e2124c
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.300.tgz
version: 0.3.300
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.2
created: "2022-02-25T11:29:45.86002435+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: 94477b16dfb7a837357d423ca86b2a310583d396dea5c0abc4f9ac8266088423
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.200.tgz
version: 0.3.200
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.1
created: "2022-02-25T11:29:45.859570159+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: e862f1736f69eae890ee6dfc545610bf8f36f69db467e7a30464bd28a56242fb
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.100.tgz
version: 0.3.100
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.3.0
created: "2022-02-25T11:29:45.858823531+05:30"
description: Fleet Manager Agent - GitOps at Scale
digest: 7491dcc9a09cbf1b6675d39b65bbe9059d6bb68c1305b6fe12ec2ef2ffffb450
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-0.3.000.tgz
version: 0.3.000
fleet-crd:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.9-rc3
created: "2022-02-25T11:29:45.879831051+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: 1f544f893d41f3d3477d10f8c59f908669a2dcf6e9fdea88db2010baf5430d9d
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-100.0.3+up0.3.9-rc3.tgz
version: 100.0.3+up0.3.9-rc3
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.8
created: "2022-02-25T11:29:45.878209392+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: bb79959cac926f4b96015045e00306c44b8d40fa062f03df4f21ad61a5d8df5a
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-100.0.2+up0.3.8.tgz
version: 100.0.2+up0.3.8
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.7
created: "2022-02-25T11:29:45.875690471+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: 2e17c257b5ac9e11b82fc536fd55f91f1af84ed1f66cbb15da72ff42b565ec59
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-100.0.1+up0.3.7.tgz
version: 100.0.1+up0.3.7
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.6
created: "2022-02-25T11:29:45.872877932+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: f3ce8f5843065e945932142d1fe78bdc026d3e418781c83eb54fdac9c48fcb1b
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-100.0.0+up0.3.6.tgz
version: 100.0.0+up0.3.6
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.5
created: "2022-02-25T11:29:45.87071667+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: 7f315fb7b936a6c9660461bdadc011b1aad9bc0d168b8b490c99465c26a18ed8
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.500.tgz
version: 0.3.500
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.4
created: "2022-02-25T11:29:45.869643939+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: ca1a23a225edaffa596ab4c6c3e86a045cf94b68c5a0610398138c5d480371b4
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.400.tgz
version: 0.3.400
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.3
created: "2022-02-25T11:29:45.867898646+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: 94c9597808402280b9d9b701cdc10e575358668fb9e0361839d5c946631a117f
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.300.tgz
version: 0.3.300
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.2
created: "2022-02-25T11:29:45.8658221+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: bf7a3ac1b294e9e8ccecd4b8c2650bef16593a929ddd734fc4d7b8f16c6395f3
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.200.tgz
version: 0.3.200
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.1
created: "2022-02-25T11:29:45.86480833+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: 29b939673a442b32f3d6c6d6ee087ed58f17a57952065d69a088a2c4c4bfebe7
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.100.tgz
version: 0.3.100
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: fleet-system
catalog.cattle.io/release-name: fleet-crd
apiVersion: v2
appVersion: 0.3.0
created: "2022-02-25T11:29:45.864003872+05:30"
description: Fleet Manager CustomResourceDefinitions
digest: b82d2e2a800d73ba2d6113ee7f7b57e06e8f515a0b2b88e09ea6968a1d51c4b6
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-crd
urls:
- assets/fleet-crd/fleet-crd-0.3.000.tgz
version: 0.3.000
harvester-cloud-provider:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Harvester Cloud Provider
catalog.cattle.io/kube-version: '>= 1.18'
catalog.cattle.io/namespace: kube-system
catalog.cattle.io/os: linux
catalog.cattle.io/rancher-version: '>= 2.6.1-0 <= 2.6.99-0'
catalog.cattle.io/release-name: harvester-cloud-provider
catalog.cattle.io/ui-component: harvester-cloud-provider
catalog.cattle.io/upstream-version: 0.1.8
apiVersion: v2
appVersion: v0.1.1
created: "2022-02-25T11:29:45.880328899+05:30"
description: A Helm chart for Harvester Cloud Provider
digest: f3d96fc0b29301f1aed9e0cf86a994ace8d772ee5d107b684eb0454aed57a730
keywords:
- infrastructure
- harvester
maintainers:
- name: harvester
name: harvester-cloud-provider
type: application
urls:
- assets/harvester-cloud-provider/harvester-cloud-provider-100.0.0+up0.1.8.tgz
version: 100.0.0+up0.1.8
harvester-csi-driver:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Harvester CSI Driver
catalog.cattle.io/kube-version: '>= 1.18'
catalog.cattle.io/namespace: kube-system
catalog.cattle.io/os: linux
catalog.cattle.io/rancher-version: '>= 2.6.1-0 <= 2.6.99-0'
catalog.cattle.io/release-name: harvester-csi-driver
catalog.cattle.io/ui-component: harvester-csi-driver
catalog.cattle.io/upstream-version: 0.1.9
apiVersion: v2
appVersion: v0.1.1
created: "2022-02-25T11:29:45.880973294+05:30"
description: A Helm chart for Harvester CSI driver
digest: 3c04539a97bd637ba62a13f8672ec744b1f7147f7218f0a604c6685fdebb2c6a
keywords:
- infrastructure
- harvester
maintainers:
- name: harvester
name: harvester-csi-driver
type: application
urls:
- assets/harvester-csi-driver/harvester-csi-driver-100.0.0+up0.1.9.tgz
version: 100.0.0+up0.1.9
longhorn:
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/kube-version: '>=1.18.0-0'
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: '>= 2.6.0-0'
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: longhorn
catalog.cattle.io/upstream-version: 1.2.3
apiVersion: v1
appVersion: v1.2.3
created: "2022-02-25T11:29:45.905490629+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: d5304aaab505d139501e9710ae1a38166db1fdd475e1ed99a91f3c15ee49be56
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=1.18.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-100.1.1+up1.2.3.tgz
version: 100.1.1+up1.2.3
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: '>= 2.6.0-0'
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.2.2
created: "2022-02-25T11:29:45.903256717+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 5d612af3e35700b5f53c0684e9d06b77ce6830a1fa5b2b47f19bc72e7843eccc
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=1.18.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-100.1.0+up1.2.2.tgz
version: 100.1.0+up1.2.2
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/kube-version: '>= v1.16.0-0, < v1.22.0-0'
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: '>= 2.6.0-0'
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: longhorn
catalog.cattle.io/upstream-version: 1.1.3
apiVersion: v1
appVersion: v1.1.3
created: "2022-02-25T11:29:45.901080221+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: a02fb4a08e4ff493cc0517b7abc01b0099b94689516dcb891d3ca0fd4224b232
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>= v1.16.0-0, < v1.22.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/backing-image-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-100.0.1+up1.1.3.tgz
version: 100.0.1+up1.1.3
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: '>= 2.6.0-0'
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.1.2
created: "2022-02-25T11:29:45.899739791+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: d7085f7d6ecfc3b980dbaa2f7c52a6a57104fb64d129b642523dd8f5654458fb
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=v1.16.0-r0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/backing-image-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-100.0.0+up1.1.2.tgz
version: 100.0.0+up1.1.2
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/kube-version: '>=1.18.0-0'
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: <2.5.99-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
catalog.cattle.io/upstream-version: 1.2.3
apiVersion: v1
appVersion: v1.2.3
created: "2022-02-25T11:29:45.897951712+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 5f5a302c750f93d3048f756c3edec62ddb94cecf11ec790d9053a9a1f4f89254
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=1.18.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-1.2.300+up1.2.3.tgz
version: 1.2.300+up1.2.3
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: <2.5.99-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.2.2
created: "2022-02-25T11:29:45.89662165+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: af3124a70cc951385bccd33e2bb4cbbba0dac3baf3b8671d402c2f152766ffff
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=1.18.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-1.2.200+up1.2.2.tgz
version: 1.2.200+up1.2.2
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/kube-version: '>= v1.16.0-0, < v1.22.0-0'
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: <2.5.99-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
catalog.cattle.io/upstream-version: 1.1.3
apiVersion: v1
appVersion: v1.1.3
created: "2022-02-25T11:29:45.895047937+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 346811b508ef1a9335c3a8762f871e3b7efdf78c6cd713c97439653a8be9fc97
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>= v1.16.0-0, < v1.22.0-0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/backing-image-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-1.1.300+up1.1.3.tgz
version: 1.1.300+up1.1.3
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: <2.5.99-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.1.2
created: "2022-02-25T11:29:45.893110311+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 65864265515bd3ad30db80810bd0f85dc393c2e11bf00cb9ff778c8923f36801
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=v1.16.0-r0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/backing-image-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-1.1.200+up1.1.2.tgz
version: 1.1.200+up1.1.2
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: < 2.6.1-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.1.1
created: "2022-02-25T11:29:45.88809871+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: 5e6c37a48906f86ae273c01d38fecb95dba8aba0b21b330f65ff6bcb4ff61ce8
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.png
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi
- nfs
kubeVersion: '>=v1.16.0-r0'
maintainers:
- email: maintainers@longhorn.io
name: Longhorn maintainers
name: longhorn
sources:
- https://github.com/longhorn/longhorn
- https://github.com/longhorn/longhorn-engine
- https://github.com/longhorn/longhorn-instance-manager
- https://github.com/longhorn/longhorn-share-manager
- https://github.com/longhorn/longhorn-manager
- https://github.com/longhorn/longhorn-ui
- https://github.com/longhorn/longhorn-tests
- https://github.com/longhorn/backing-image-manager
urls:
- assets/longhorn/longhorn-1.1.100.tgz
version: 1.1.100
- annotations:
catalog.cattle.io/auto-install: longhorn-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Longhorn
catalog.cattle.io/namespace: longhorn-system
catalog.cattle.io/os: linux
catalog.cattle.io/provides-gvr: longhorn.io/v1beta1
catalog.cattle.io/rancher-version: < 2.6.1-0
catalog.cattle.io/release-name: longhorn
catalog.cattle.io/ui-component: longhorn
apiVersion: v1
appVersion: v1.1.0
created: "2022-02-25T11:29:45.886505973+05:30"
description: Longhorn is a distributed block storage system for Kubernetes.
digest: dd96e487181cfdc0728a315f54da59ca043063ff7e99b59c4e560ba9dc92ef1e
home: https://github.com/longhorn/longhorn
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/longhorn/icon/color/longhorn-icon-color.svg?sanitize=true
keywords:
- longhorn
- storage
- distributed
- block
- device
- iscsi