forked from rancher/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
executable file
·16960 lines (16960 loc) · 670 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:
epinio:
- annotations:
artifacthub.io/license: Apache-2.0
artifacthub.io/prerelease: "false"
catalog.cattle.io/auto-install: epinio-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Epinio
catalog.cattle.io/experimental: "true"
catalog.cattle.io/kube-version: '>= 1.23.0-0 < 1.28.0-0'
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/permits-os: linux
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: epinio
catalog.cattle.io/type: app
catalog.cattle.io/upstream-version: 1.9.0
apiVersion: v2
appVersion: v1.9.0
created: "2023-07-25T13:57:01.838813997+02:00"
dependencies:
- condition: global.dex.enabled
name: dex
repository: file://./charts/dex
tags:
- dex
- condition: kubed.enabled, global.kubed.enabled
name: kubed
repository: file://./charts/kubed
tags:
- kubed
- condition: minio.enabled, global.minio.enabled
name: minio
repository: file://./charts/minio
tags:
- minio
- condition: s3gw.enabled, global.s3gw.enabled
name: s3gw
repository: file://./charts/s3gw
tags:
- s3gw
description: Epinio deploys Kubernetes applications directly from source code
in one step.
digest: 553ab5adf47549107e205a2dddf5d362189f525757ef8a69a0bb4d365fe5afa5
home: https://github.com/epinio/epinio
icon: https://charts.rancher.io/assets/logos/epinio.svg
keywords:
- epinio
- paas
maintainers:
- email: [email protected]
name: SUSE
name: epinio
sources:
- https://github.com/epinio/epinio
urls:
- assets/epinio/epinio-102.0.4+up1.9.0.tgz
version: 102.0.4+up1.9.0
- annotations:
artifacthub.io/license: Apache-2.0
catalog.cattle.io/auto-install: epinio-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Epinio
catalog.cattle.io/experimental: "true"
catalog.cattle.io/kube-version: '>= 1.23.0-0 < 1.28.0-0'
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/permits-os: linux
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: epinio
catalog.cattle.io/type: app
catalog.cattle.io/upstream-version: 1.6.2
apiVersion: v2
appVersion: v1.8.1
created: "2023-06-21T11:13:03.876515375+02:00"
dependencies:
- condition: global.dex.enabled
name: dex
repository: file://./charts/dex
tags:
- dex
- condition: kubed.enabled, global.kubed.enabled
name: kubed
repository: file://./charts/kubed
tags:
- kubed
- condition: minio.enabled, global.minio.enabled
name: minio
repository: file://./charts/minio
tags:
- minio
- condition: s3gw.enabled, global.s3gw.enabled
name: s3gw
repository: file://./charts/s3gw
tags:
- s3gw
description: Epinio deploys Kubernetes applications directly from source code
in one step.
digest: 0d71ba6a8d2287ab1816824e136c97b9d94b0e6a9c5b9c1a383a399516c9bbf1
home: https://github.com/epinio/epinio
icon: https://charts.rancher.io/assets/logos/epinio.svg
keywords:
- epinio
- paas
maintainers:
- email: [email protected]
name: SUSE
name: epinio
sources:
- https://github.com/epinio/epinio
urls:
- assets/epinio/epinio-102.0.3+up1.8.1.tgz
version: 102.0.3+up1.8.1
- annotations:
artifacthub.io/license: Apache-2.0
catalog.cattle.io/auto-install: epinio-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Epinio
catalog.cattle.io/experimental: "true"
catalog.cattle.io/kube-version: '>= 1.20.0-0 < 1.26.0-0'
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: epinio
catalog.cattle.io/type: app
catalog.cattle.io/upstream-version: 1.6.2
apiVersion: v2
appVersion: v1.6.2
created: "2023-02-09T14:11:55.011721154+01:00"
dependencies:
- condition: dex.enabled, global.dex.enabled
name: dex
repository: file://./charts/dex
tags:
- dex
- condition: epinio-ui.enabled
name: epinio-ui
repository: file://./charts/epinio-ui
tags:
- epinio-ui
- condition: kubed.enabled, global.kubed.enabled
name: kubed
repository: file://./charts/kubed
tags:
- kubed
- condition: minio.enabled, global.minio.enabled
name: minio
repository: file://./charts/minio
tags:
- minio
description: Epinio deploys Kubernetes applications directly from source code
in one step.
digest: f7c06d7e023e34cec63627d99b55e9243d9f26cfc9248ebb188eba206f3891f6
home: https://github.com/epinio/epinio
icon: https://charts.rancher.io/assets/logos/epinio.svg
keywords:
- epinio
- paas
maintainers:
- email: [email protected]
name: SUSE
name: epinio
sources:
- https://github.com/epinio/epinio
urls:
- assets/epinio/epinio-102.0.1+up1.6.2.tgz
version: 102.0.1+up1.6.2
- annotations:
artifacthub.io/license: Apache-2.0
catalog.cattle.io/auto-install: epinio-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Epinio
catalog.cattle.io/experimental: "true"
catalog.cattle.io/kube-version: '>= 1.20.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: epinio
catalog.cattle.io/type: app
catalog.cattle.io/upstream-version: 1.6.2
apiVersion: v2
appVersion: v1.6.2
created: "2023-03-22T16:39:03.161205-04:00"
dependencies:
- condition: dex.enabled, global.dex.enabled
name: dex
repository: file://./charts/dex
tags:
- dex
- condition: epinio-ui.enabled
name: epinio-ui
repository: file://./charts/epinio-ui
tags:
- epinio-ui
- condition: kubed.enabled, global.kubed.enabled
name: kubed
repository: file://./charts/kubed
tags:
- kubed
- condition: minio.enabled, global.minio.enabled
name: minio
repository: file://./charts/minio
tags:
- minio
description: Epinio deploys Kubernetes applications directly from source code
in one step.
digest: 5fce01661584f31d2a20eee85075a43553b77907c430016e685652ff661078eb
home: https://github.com/epinio/epinio
icon: https://charts.rancher.io/assets/logos/epinio.svg
keywords:
- epinio
- paas
maintainers:
- email: [email protected]
name: SUSE
name: epinio
sources:
- https://github.com/epinio/epinio
urls:
- assets/epinio/epinio-100.0.5+up1.6.2.tgz
version: 100.0.5+up1.6.2
- annotations:
artifacthub.io/license: Apache-2.0
catalog.cattle.io/auto-install: epinio-crd=match
catalog.cattle.io/certified: rancher
catalog.cattle.io/display-name: Epinio
catalog.cattle.io/experimental: "true"
catalog.cattle.io/kube-version: '>= 1.20.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: epinio
catalog.cattle.io/type: cluster-tool
catalog.cattle.io/upstream-version: 1.2.1
apiVersion: v2
appVersion: v1.2.0
created: "2022-10-05T14:52:25.825154-07:00"
dependencies:
- condition: epinio-ui.enabled
name: epinio-ui
repository: file://./charts/epinio-ui
tags:
- epinio-ui
- condition: kubed.enabled, global.kubed.enabled
name: kubed
repository: file://./charts/kubed
tags:
- kubed
- condition: minio.enabled, global.minio.enabled
name: minio
repository: file://./charts/minio
tags:
- minio
description: The official way to install Epinio
digest: a440ec3cd2ecd98617513db094567f432dc8fe8abf104b874a0d3e599327aeb0
home: https://github.com/epinio/epinio
icon: https://charts.rancher.io/assets/logos/epinio.svg
keywords:
- epinio
- paas
maintainers:
- email: [email protected]
name: SUSE
name: epinio
sources:
- https://github.com/epinio/epinio
urls:
- assets/epinio/epinio-100.0.0+up1.2.1.tgz
version: 100.0.0+up1.2.1
epinio-crd:
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/release-name: epinio-crd
apiVersion: v2
created: "2023-07-25T13:57:01.839703523+02:00"
description: Installs the CRDs for Epinio.
digest: 6704572ee09b773d99c97c441d25350c1193ef9ded8ecc9f652f430ddbab7321
name: epinio-crd
type: application
urls:
- assets/epinio-crd/epinio-crd-102.0.4+up1.9.0.tgz
version: 102.0.4+up1.9.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/release-name: epinio-crd
apiVersion: v2
created: "2023-06-13T10:31:31.097767607+02:00"
description: Installs the CRDs for Epinio.
digest: b2f82656422b7911824e1daeb3bdafbeed302778eefd4ade3b02e6fc6005f008
name: epinio-crd
type: application
urls:
- assets/epinio-crd/epinio-crd-102.0.3+up1.8.1.tgz
version: 102.0.3+up1.8.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/release-name: epinio-crd
apiVersion: v2
created: "2023-02-09T14:11:55.012665051+01:00"
description: Installs the CRDs for Epinio.
digest: 49fc556867c51bbea3bf8501115a64b7a9375d903af4ab80b48bb7cb1aaaed4b
name: epinio-crd
type: application
urls:
- assets/epinio-crd/epinio-crd-102.0.1+up1.6.2.tgz
version: 102.0.1+up1.6.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/release-name: epinio-crd
apiVersion: v2
created: "2023-03-22T16:40:26.880921-04:00"
description: Installs the CRDs for Epinio.
digest: e7fa77ab615c60f8d6749053bd8854d5eff576c1985d0c273311da4621413b7b
name: epinio-crd
type: application
urls:
- assets/epinio-crd/epinio-crd-100.0.5+up1.6.2.tgz
version: 100.0.5+up1.6.2
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/namespace: cattle-epinio-system
catalog.cattle.io/release-name: epinio-crd
apiVersion: v2
created: "2022-10-25T13:20:16.615531-07:00"
description: Installs the CRDs for Epinio.
digest: e81f940b9f6d31d843d715e1dc055534e354477b50e612ffe1f8f66b766f7bad
name: epinio-crd
type: application
urls:
- assets/epinio-crd/epinio-crd-100.0.0+up1.2.1.tgz
version: 100.0.0+up1.2.1
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/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.8.1
created: "2023-11-27T15:20:12.761159145Z"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: caa36338fba7e25713036091cf29b8132601ac24a273514a632d66b461204420
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-102.2.1+up0.8.1.tgz
version: 102.2.1+up0.8.1
- 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/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.8.0
created: "2023-09-11T15:47:23.512557192Z"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: c124a9998d516d827034032a7e9c10dbf00a55e07205e26b6367f98d5f5d32e6
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-102.2.0+up0.8.0.tgz
version: 102.2.0+up0.8.0
- 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/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.7.1
created: "2023-08-16T11:26:36.397686576Z"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: f003e34ad187d0afb3fb260bcb029d6682c4e0803e8f71516addad858b7a8f3d
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-102.1.1+up0.7.1.tgz
version: 102.1.1+up0.7.1
- 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/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.7.0
created: "2023-06-12T14:48:14.012620108Z"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 022320c5452dec2e0cd0fee5368cbd882459db622aca358cca4ab055ca2a10b3
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-102.1.0+up0.7.0.tgz
version: 102.1.0+up0.7.0
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.6.0
created: "2023-04-05T13:58:25.972888984Z"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 234fc2cf52ad1d7897728a18ee3b6ece9787c79a9ec419bf54792401e2ae9f43
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-102.0.0+up0.6.0.tgz
version: 102.0.0+up0.6.0
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.5.1
created: "2023-01-24T13:25:44.770064-08:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: ddfa4bf2432cbff77114002bef3108255c1cb29fdef6a65ee4a04162c91b9ebe
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-101.0.1+up0.5.1.tgz
version: 101.0.1+up0.5.1
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.5.0
created: "2022-12-20T21:14:01.794450287+01:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: b5ed6b4e2a1b3564997b0719ac51dd0fd85b829ed1c81c8d2c8c6dda582b0a06
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-101.0.0+up0.5.0.tgz
version: 101.0.0+up0.5.0
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.5.3
created: "2023-03-22T16:41:54.848515-04:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 8dad60752c4c41274906ac4b5b46f0323ac412495ddbbd281137ca6569535fcb
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.2.3+up0.5.3.tgz
version: 100.2.3+up0.5.3
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.5.1
created: "2023-02-14T18:00:20.436235-08:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 849bcfb7d4be7bcba194f571f96038118c8e848e569e347109fb499523a9326e
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.2.0+up0.5.1.tgz
version: 100.2.0+up0.5.1
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.4.1
created: "2023-01-06T13:31:36.466471-08:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 4fa31b4ba3d2451a595a21bee0abb381c83074ca98fbe03bf338e5558d72cf0b
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.1.1+up0.4.1.tgz
version: 100.1.1+up0.4.1
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.4.0
created: "2022-11-09T23:44:14.07447-08:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 424cf4f0fb718d547d2488de877fe82ba8d3fa11fdfe4e4f2ee8fa9f4c5ad1d1
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.1.0+up0.4.0.tgz
version: 100.1.0+up0.4.0
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.11
created: "2022-08-29T14:44:42.460526-04:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 11938b6d70d7700539f29a8a614e1bda17890104b5889cb07964560237c1acd7
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.5+up0.3.11.tgz
version: 100.0.5+up0.3.11
- 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/kube-version: '>= 1.16.0-0 < 1.25.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.10
created: "2022-08-16T13:09:06.762112-04:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 75d0a747f6b18546b729c8c860ff18edef1b98dd132f0fa2382fedb7b9db0c1a
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.4+up0.3.10.tgz
version: 100.0.4+up0.3.10
- 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/kube-version: '>= 1.16.0-0 < 1.23.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.9
created: "2022-06-24T13:48:13.915327-07:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 8e639fcfb342a73728f340061ef39e3df6486ea1c7411a0b8d04089434260831
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-100.0.3+up0.3.9.tgz
version: 100.0.3+up0.3.9
- 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/kube-version: '>= 1.16.0-0 < 1.22.0-0'
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/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.8
created: "2022-06-07T14:33:33.672146-07:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: bbca5e5c79e577357c52fbd3ae8e538887d36073bd30be8927de9ec644db683f
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/kube-version: '>= 1.16.0-0 < 1.22.0-0'
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/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.7
created: "2022-06-07T14:33:33.671498-07:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: f3857471966c8aa1e759dea40f99f5f19505b89d5f17236316055d87799c1d77
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/kube-version: '>= 1.16.0-0 < 1.22.0-0'
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/rancher-version: '>= 2.6.0-0 < 2.7.0-0'
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.6
created: "2022-06-07T14:33:33.670579-07:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: b087164c7407e6fbe09ce622b5bd52c67930530f4c777728cc9878d7491032c3
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: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.10-security1
created: "2023-02-13T14:32:26.941542-08:00"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 4f35b4a24c984663ee4c3b8219fc67be043f8dabfa7ebab707be8b36bd264d2f
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.1000+up0.3.10-security1.tgz
version: 0.3.1000+up0.3.10-security1
- 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/permits-os: linux,windows
catalog.cattle.io/provides-gvr: clusters.fleet.cattle.io/v1alpha1
catalog.cattle.io/release-name: fleet
apiVersion: v2
appVersion: 0.3.9
created: "2022-05-31T12:50:34.921557994+05:30"
dependencies:
- condition: gitops.enabled
name: gitjob
repository: file://./charts/gitjob
description: Fleet Manager - GitOps at Scale
digest: 1a55d381771a73353379f6f22f46710034b32c0e5073398e98b244884d187563
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet
urls:
- assets/fleet/fleet-0.3.900+up0.3.9.tgz
version: 0.3.900+up0.3.9
- 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/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.8.1
created: "2023-11-27T15:20:14.005858572Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 32d0e4d8bc7407614613a85a2682e05dfe2a9f3b0688f524a81f0f53f25e53ac
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-102.2.1+up0.8.1.tgz
version: 102.2.1+up0.8.1
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.8.0
created: "2023-09-11T15:47:25.032064274Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 2a22799f825ea69e567692ada7beeb885c976400e6bca238853abef7337f9eaa
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-102.2.0+up0.8.0.tgz
version: 102.2.0+up0.8.0
- annotations:
catalog.cattle.io/certified: rancher
catalog.cattle.io/hidden: "true"
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.27.0-0'
catalog.cattle.io/namespace: cattle-fleet-system
catalog.cattle.io/os: linux
catalog.cattle.io/permits-os: linux,windows
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
catalog.cattle.io/release-name: fleet-agent
apiVersion: v2
appVersion: 0.7.1
created: "2023-08-16T11:26:38.267987513Z"
description: Fleet Manager Agent - GitOps at Scale
digest: 1dc8b4ff10d525b60504c8077913740e1fe6c4718a930b4664a35224dc72ef39
icon: https://charts.rancher.io/assets/logos/fleet.svg
name: fleet-agent
urls:
- assets/fleet-agent/fleet-agent-102.1.1+up0.7.1.tgz
version: 102.1.1+up0.7.1
- annotations: