-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathindex.yaml
2457 lines (2457 loc) · 94 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:
flux2:
- annotations:
artifacthub.io/changes: |
- "fix(charts/flux2,crds): crds.annotations got respected now"
apiVersion: v2
appVersion: 2.4.0
created: "2025-01-08T15:48:38.33897116Z"
description: A Helm chart for flux2
digest: 1c4a797cfe11370e9f2ea29b1d4834805ce4160d65008198389c91ecd8a3cdb9
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.14.1/flux2-2.14.1.tgz
version: 2.14.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.4.0"
apiVersion: v2
appVersion: 2.4.0
created: "2024-10-03T06:53:26.674074113Z"
description: A Helm chart for flux2
digest: 9b9efe754fb04c8ffa6382da87ae8eb32cd434ef34bb1e20f7ad2b775cb92da6
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.14.0/flux2-2.14.0.tgz
version: 2.14.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.2.3"
apiVersion: v2
appVersion: 2.3.0
created: "2024-05-13T21:27:09.508376731Z"
description: A Helm chart for flux2
digest: 6cd3eed135f306696cf0112f75677d1ed8b2110db1b2d961fa515dc384e10fc7
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.13.0/flux2-2.13.0.tgz
version: 2.13.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.2.3"
apiVersion: v2
appVersion: 2.2.3
created: "2024-03-03T07:08:40.260998315Z"
description: A Helm chart for flux2
digest: cbb82ca63dd6b882d23cf48608559d71230f86eedec0a3081a265a6cf502c5fb
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.12.4/flux2-2.12.4.tgz
version: 2.12.4
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.2.3"
apiVersion: v2
appVersion: 2.2.3
created: "2024-02-27T06:34:02.583146965Z"
description: A Helm chart for flux2
digest: feab971c5bbc1839c1f0bfea277ce8b35906d4c5d9e4feba71531091e783b336
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.12.3/flux2-2.12.3.tgz
version: 2.12.3
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.2.2"
apiVersion: v2
appVersion: 2.2.2
created: "2023-12-19T22:29:12.889063417Z"
description: A Helm chart for flux2
digest: f67cfe06c02f81f3a877a4d2483904d607b56ee59149d1c8c1da070b320e2ac5
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.12.2/flux2-2.12.2.tgz
version: 2.12.2
- annotations:
artifacthub.io/changes: |
- "chore: disallow source-controller replica count other than 1"
apiVersion: v2
appVersion: 2.2.0
created: "2023-12-14T14:05:47.516188546Z"
description: A Helm chart for flux2
digest: ec761d2ccc9e60aec57da01ae5601a155f5c91f8a284e338fa221c873f24c8fd
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.12.1/flux2-2.12.1.tgz
version: 2.12.1
- annotations:
artifacthub.io/changes: |
- "feat: update CRDs and component versions to flux v2.2.0"
apiVersion: v2
appVersion: 2.2.0
created: "2023-12-12T19:45:27.308265825Z"
description: A Helm chart for flux2
digest: 463e28de9d58aec25166340660f7e81a8fbe219af8f59dbc7a190785eee53119
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.12.0/flux2-2.12.0.tgz
version: 2.12.0
- annotations:
artifacthub.io/changes: |
- "feat: adding CRD and RBAC annotation option"
apiVersion: v2
appVersion: 2.1.2
created: "2023-11-09T05:47:33.038746477Z"
description: A Helm chart for flux2
digest: 699f006382fc0da6cb81b613ff9f67f64b37b4c86660b1fc63939147876065f5
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.11.1/flux2-2.11.1.tgz
version: 2.11.1
- annotations:
artifacthub.io/changes: |
- "feat: add ingress resource for notificationController's receiver webhook service"
apiVersion: v2
appVersion: 2.1.2
created: "2023-11-05T14:39:43.971292975Z"
description: A Helm chart for flux2
digest: 84edf904208531063a66bf17c34daf5a7c0a17719c2f5fa3b73658966789c0e2
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.11.0/flux2-2.11.0.tgz
version: 2.11.0
- annotations:
artifacthub.io/changes: |
- "feat: upgrade to FluxCD 2.1.2"
apiVersion: v2
appVersion: 2.1.2
created: "2023-10-28T19:41:26.351674231Z"
description: A Helm chart for flux2
digest: 24048dc941c7928dcda89743438a71ef141d726de2572f6692f3002336c6ded8
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.6/flux2-2.10.6.tgz
version: 2.10.6
- annotations:
artifacthub.io/changes: |
- "feat: upgrade to FluxCD 2.1.2"
apiVersion: v2
appVersion: 2.1.2
created: "2023-10-25T07:31:14.76535536Z"
description: A Helm chart for flux2
digest: 7c27d5e310d9d6b4247fe6dab0fe1274333fa4bd0849f973e24077f5418b8182
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.5/flux2-2.10.5.tgz
version: 2.10.5
- annotations:
artifacthub.io/changes: |
- "feat: enable labeling of deployments"
apiVersion: v2
appVersion: 2.1.1
created: "2023-10-25T06:14:21.483800209Z"
description: A Helm chart for flux2
digest: da023bb566a2735da44695b4f2897b70593ddfa16adb0c61539d289efc0f23a3
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.4/flux2-2.10.4.tgz
version: 2.10.4
- annotations:
artifacthub.io/changes: |
- "feat: enable labeling of deployments"
apiVersion: v2
appVersion: 2.1.1
created: "2023-10-24T12:39:33.981109741Z"
description: A Helm chart for flux2
digest: 6b59519871026f3b95bf44bb2f622a05bdb19800eae390241b1e7ab1d31814b2
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.3/flux2-2.10.3.tgz
version: 2.10.3
- annotations:
artifacthub.io/changes: |
- "feat: enable labeling of deployments"
apiVersion: v2
appVersion: 2.1.1
created: "2023-10-11T08:54:39.498420325Z"
description: A Helm chart for flux2
digest: 3906f07aa87406628277b97d69d2ab29359ff946df9fbfc43eca9533b9210266
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.2/flux2-2.10.2.tgz
version: 2.10.2
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.1.1"
apiVersion: v2
appVersion: 2.1.1
created: "2023-09-20T06:43:50.024219727Z"
description: A Helm chart for flux2
digest: 32c7ccc179b702c25a68bd01ddf51f418090dceedc8026737a590fb002a606c3
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.1/flux2-2.10.1.tgz
version: 2.10.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.1.0"
apiVersion: v2
appVersion: 2.1.0
created: "2023-09-03T15:30:55.052325425Z"
description: A Helm chart for flux2
digest: 0f5a4d6e4c841d2fa79422b8125fe3890bb7b83e7f8c8c9b81c700b9f242ebed
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.10.0/flux2-2.10.0.tgz
version: 2.10.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.0.1"
apiVersion: v2
appVersion: 2.0.1
created: "2023-07-28T08:45:11.575980547Z"
description: A Helm chart for flux2
digest: 0d857150b9cc091edbbc6d4df4a5ef2d7fa2d677f30a714be3213a8310e95e48
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.9.2/flux2-2.9.2.tgz
version: 2.9.2
- annotations:
artifacthub.io/changes: |
- "[Added]: Support extraEnv value setting for all flux controllers"
apiVersion: v2
appVersion: 2.0.0
created: "2023-07-27T08:26:37.91389265Z"
description: A Helm chart for flux2
digest: 9d346992f2b7110ff779946103a38e6797c5a03054fc4bde56e5efcf7d82904d
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.9.1/flux2-2.9.1.tgz
version: 2.9.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.0.0"
apiVersion: v2
appVersion: 2.0.0
created: "2023-07-05T17:28:21.964686013Z"
description: A Helm chart for flux2
digest: 35e50a15e7f95d37e467e85a75eed18861402b0175291eaa87aadd255edc791e
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.9.0/flux2-2.9.0.tgz
version: 2.9.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 2.0.0-rc.3"
apiVersion: v2
appVersion: 2.0.0-rc.3
created: "2023-05-22T13:42:21.554555541Z"
description: A Helm chart for flux2
digest: 957b68789b7978883f5876e4fef46329c65737e364e7f697018d6d98761afaf3
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.8.0/flux2-2.8.0.tgz
version: 2.8.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 0.41.1"
apiVersion: v2
appVersion: 0.41.1
created: "2023-03-13T12:37:49.872439319Z"
description: A Helm chart for flux2
digest: f3e0282352c9f6f07c12603f2e4892a5e686e9198ee26dbe9bc0397b803421ea
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.7.0/flux2-2.7.0.tgz
version: 2.7.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 0.39.0"
apiVersion: v2
appVersion: 0.39.0
created: "2023-02-03T14:00:12.679713369Z"
description: A Helm chart for flux2
digest: 32062ca00cd236d8c6b20413697478140acf5a7f73ece6fb937139c3cee34cb5
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.6.0/flux2-2.6.0.tgz
version: 2.6.0
- annotations:
artifacthub.io/changes: |
- "[Added]: Support .Values.imagePullSecrets in cli container in pre-install-job.yaml"
apiVersion: v2
appVersion: 0.37.0
created: "2023-01-27T15:18:42.50133238Z"
description: A Helm chart for flux2
digest: bc504b14ad8d55da0e77bce086217aa4624c70703cca6598bffcc5b1632a676a
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.5.1/flux2-2.5.1.tgz
version: 2.5.1
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow setting podSecurityContext for controllers"
apiVersion: v2
appVersion: 0.37.0
created: "2023-01-23T08:24:50.675160561Z"
description: A Helm chart for flux2
digest: d2f0fd735fb9ac1370eb9f31163cccfc2bacee90c73f123f40af49f696493f31
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.5.0/flux2-2.5.0.tgz
version: 2.5.0
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow setting install-job securityContext and volumes"
apiVersion: v2
appVersion: 0.37.0
created: "2023-01-18T09:22:27.657493236Z"
description: A Helm chart for flux2
digest: ab576e14ac3c34ca627be3f927f320587a3153e0fefdd69e272a3d6d7ca0f419
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.4.1/flux2-2.4.1.tgz
version: 2.4.1
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow disabling CRD installation for specific controllers"
- "[Added]: Allow setting automountServiceAccountToken on the pod spec"
- "[Added]: Support specifying annotationts for the pre-install-job"
apiVersion: v2
appVersion: 0.37.0
created: "2023-01-18T08:18:44.735959778Z"
description: A Helm chart for flux2
digest: b6ee1743e54cba1c147030634523acd450b1998666298e182423e969d1290533
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.4.0/flux2-2.4.0.tgz
version: 2.4.0
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow setting automountServiceAccountToken on the pod spec"
apiVersion: v2
appVersion: 0.37.0
created: "2023-01-10T08:06:13.975650896Z"
description: A Helm chart for flux2
digest: da9b1379d4c3cfcaa457ce82fd0809db843a28c3e1c1861312cbb357d0d03202
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.3.0/flux2-2.3.0.tgz
version: 2.3.0
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow disabling CRD installation for specific controllers"
apiVersion: v2
appVersion: 0.37.0
created: "2022-12-06T09:10:20.191214735Z"
description: A Helm chart for flux2
digest: cc91e0ab1a5550d20b19b3c9ac71473ea2dcba8af5370f19a14a25989db762e2
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.2.0/flux2-2.2.0.tgz
version: 2.2.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Fix bug with multi-tenancy clusterrolebinding"
apiVersion: v2
appVersion: 0.37.0
created: "2022-11-24T21:06:58.101699249Z"
description: A Helm chart for flux2
digest: 188eac26c04f1c6a83a822dcece666232752126808e6a8de3e2cc9bede339209
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.1.1/flux2-2.1.1.tgz
version: 2.1.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 0.37.0"
apiVersion: v2
appVersion: 0.37.0
created: "2022-11-24T08:39:14.263368768Z"
description: A Helm chart for flux2
digest: 6aa51c0942107f00f615d3803770678a50db353b08d35747e75b5655c435f933
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.1.0/flux2-2.1.0.tgz
version: 2.1.0
- annotations:
artifacthub.io/changes: |
- "[added]: `clusterDomain` to correctly apply fqdns for event and storage addresses"
- "[removed]: `eventsaddr` has been removed in favour of `clusterDomain`"
- "[fixed]: storage address in source controller assumed cluster domain was always `cluster.local`"
- "[changed]: change case of `helmcontroller` to `helmController`"
- "[changed]: change case of `imageautomationcontroller` to `imageAutomationController`"
- "[changed]: change case of `imagereflectioncontroller` to `imageReflectionController`"
- "[changed]: change case of `kustomizecontroller` to `kustomizeController`"
- "[changed]: change case of `notificationcontroller` to `notificationController`"
- "[changed]: change case of `sourcecontroller` to `sourceController`"
- "[changed]: change case of `serviceaccount` to `serviceAccount`"
- "[changed]: change case of `additionalargs` to `additionalArgs`"
- "[changed]: change case of `loglevel` to `logLevel`"
- "[changed]: change case of `watchallnamespaces` to `watchAllNamespaces`"
apiVersion: v2
appVersion: 0.36.0
created: "2022-11-05T17:58:42.478557566Z"
description: A Helm chart for flux2
digest: 0ca9d8a7073d1e8b6be64d32d12c188543015d0a7bce8a9be8a5c119589b6a28
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-2.0.0/flux2-2.0.0.tgz
version: 2.0.0
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 0.36.0"
apiVersion: v2
appVersion: 0.36.0
created: "2022-11-03T11:53:51.725156598Z"
description: A Helm chart for flux2
digest: c778c3521a91d4f9ca91316f9947a4f0e211bc73921b98ebe8fcc2caa294f542
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.7.0/flux2-1.7.0.tgz
version: 1.7.0
- annotations:
artifacthub.io/changes: |
- "[FIX]: fixed generation for crds - stops variable evaluation"
apiVersion: v2
appVersion: 0.35.0
created: "2022-10-13T13:54:28.703658481Z"
description: A Helm chart for flux2
digest: 459860666f9a908778efb5479133937806e8436f0f3320420cf0658410bf1cb9
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.6.1/flux2-1.6.1.tgz
version: 1.6.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: Update App Version to upstream 0.35.0"
apiVersion: v2
appVersion: 0.35.0
created: "2022-10-06T10:06:50.710593535Z"
description: A Helm chart for flux2
digest: ca9ee401a8dfd9023ac5c02c56afe2837c75c05223de26f1fd1f9624160eed99
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.6.0/flux2-1.6.0.tgz
version: 1.6.0
- annotations:
artifacthub.io/changes: |
- "[Fix]: Do not set events-addr when notification controller is not set to create"
apiVersion: v2
appVersion: 0.34.0
created: "2022-09-27T14:47:05.992258301Z"
description: A Helm chart for flux2
digest: 2572722498d2da8006edc206419f813e8149a94858149f75c198c86116f155ca
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.5.1/flux2-1.5.1.tgz
version: 1.5.1
- annotations:
artifacthub.io/changes: |
- "[Chore]: update AppVersion to 0.34.0 (https://github.com/fluxcd/flux2/releases/tag/v0.34.0)"
apiVersion: v2
appVersion: 0.34.0
created: "2022-09-27T13:32:51.059941295Z"
description: A Helm chart for flux2
digest: 3d4b19ebfe9e02d8a8061722ecfef87369f90469836c684488b71c0783da1643
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.5.0/flux2-1.5.0.tgz
version: 1.5.0
- annotations:
artifacthub.io/changes: |
- "[Feature]: Add support for running flux service accounts without cluster-admin privileges"
apiVersion: v2
appVersion: 0.33.0
created: "2022-09-20T16:41:36.036586298Z"
description: A Helm chart for flux2
digest: aed76abd6b1c41c90abf591b5233bb760ca26a8eaf6544e4cd82057b18be04b3
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.4.0/flux2-1.4.0.tgz
version: 1.4.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Filter out non-running pods in Prometheus"
apiVersion: v2
appVersion: 0.33.0
created: "2022-09-05T11:00:28.348829597Z"
description: A Helm chart for flux2
digest: dfce71821571c57062e8e848913ad206417e8d998e858b7644a30e9a9784a60e
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.3.0/flux2-1.3.0.tgz
version: 1.3.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Filter out non-running pods in Prometheus"
apiVersion: v2
appVersion: 0.33.0
created: "2022-09-05T10:14:12.616047156Z"
description: A Helm chart for flux2
digest: a0d39bd8f25c05c13b54420a50156299caa8d62a461b1078f02331ed0be7b1a1
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.2.2/flux2-1.2.2.tgz
version: 1.2.2
- annotations:
artifacthub.io/changes: |
- "[Update]: Add ability to specify priorityclass"
apiVersion: v2
appVersion: 0.33.0
created: "2022-09-05T06:45:47.128783728Z"
description: A Helm chart for flux2
digest: 4fa5d2ac2dcea84530ab711af49ea5c70f5b92d9fcc56a360e7fb807add67799
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.2.1/flux2-1.2.1.tgz
version: 1.2.1
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.33.0"
apiVersion: v2
appVersion: 0.33.0
created: "2022-09-02T12:00:20.7581076Z"
description: A Helm chart for flux2
digest: dc0bdcf3cf23729eccae825bb9cee43b46e14d6d104f21358a4440fc639739bc
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.2.0/flux2-1.2.0.tgz
version: 1.2.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.32.0"
apiVersion: v2
appVersion: 0.32.0
created: "2022-08-23T08:15:52.488596982Z"
description: A Helm chart for flux2
digest: 0ad2b76c554df0d69ff63f12c521ad2547b65111149f002e00a0a14e11d60725
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.1.0/flux2-1.1.0.tgz
version: 1.1.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.31.3"
apiVersion: v2
appVersion: 0.31.3
created: "2022-07-07T15:05:07.970600809Z"
description: A Helm chart for flux2
digest: eb4896cdf8f8e7857ccf49a9542481dadba77e003cbfc495b5fbe169e35d6969
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-1.0.0/flux2-1.0.0.tgz
version: 1.0.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.31.1"
apiVersion: v2
appVersion: 0.31.1
created: "2022-06-08T14:57:09.451058821Z"
description: A Helm chart for flux2
digest: 1733f9e89913faec49b5b06b25b29d6bb50267045f9f83da4b38a640ec97df87
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.20.0/flux2-0.20.0.tgz
version: 0.20.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.30.2"
apiVersion: v2
appVersion: 0.30.2
created: "2022-05-12T09:47:18.930849492Z"
description: A Helm chart for flux2
digest: b643c16b46c59f646520a8d45cef7c8433a26a022c5d9c949be3ec0499936220
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.19.2/flux2-0.19.2.tgz
version: 0.19.2
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.30.2"
apiVersion: v2
appVersion: 0.30.2
created: "2022-05-11T19:14:35.932810699Z"
description: A Helm chart for flux2
digest: f29053fd979bc00b3c508cbdb5a153eaf9fc0fb266cfa567f20694dd34955d77
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.19.1/flux2-0.19.1.tgz
version: 0.19.1
- annotations:
artifacthub.io/changes: |
- "[Changed]: Use number port instead of named port in webhook service"
apiVersion: v2
appVersion: 0.29.3
created: "2022-05-09T18:33:29.704260904Z"
description: A Helm chart for flux2
digest: ff56fc66e3a1ba694dd510a3acf563631cfde585eb787de3714e7b6e1f47a403
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.18.3/flux2-0.18.3.tgz
version: 0.18.3
- annotations:
artifacthub.io/changes: |
- "[Fixed]: Typo in notificationcontroller services annotations"
apiVersion: v2
appVersion: 0.29.3
created: "2022-05-09T06:14:14.747275544Z"
description: A Helm chart for flux2
digest: 39e9c0b548be86260488c37cde886a022767b601126a2c806bde2734406810ad
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.18.2/flux2-0.18.2.tgz
version: 0.18.2
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow custom labels and annotations for all services"
apiVersion: v2
appVersion: 0.29.3
created: "2022-05-05T09:25:29.891366551Z"
description: A Helm chart for flux2
digest: 3ebc6ad918df459572da01a8edb0c9a9a4626532a9634781baf74c0dc7bc5b19
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.18.1/flux2-0.18.1.tgz
version: 0.18.1
- annotations:
artifacthub.io/changes: |
- "[Added]: Allow custom labels and annotations for all services"
apiVersion: v2
appVersion: 0.29.3
created: "2022-04-22T12:03:31.791338478Z"
description: A Helm chart for flux2
digest: 79d96032a4a92766373712bc082ef49cfcc9c914cc98ee1ffdf102eaf6da49aa
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.18.0/flux2-0.18.0.tgz
version: 0.18.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.29.3"
apiVersion: v2
appVersion: 0.29.3
created: "2022-04-22T11:43:01.30025626Z"
description: A Helm chart for flux2
digest: f3b81b5322f54a0f1522cacb317ddd949e59fc10fa2ffe3bf40174c4c7de5ab9
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.17.2/flux2-0.17.2.tgz
version: 0.17.2
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.29.2"
apiVersion: v2
appVersion: 0.29.2
created: "2022-04-21T11:54:20.125782023Z"
description: A Helm chart for flux2
digest: c9588eb29cb7534a4d3892e831658799bd426ae4bd00c6561551f967f3625fe0
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.17.1/flux2-0.17.1.tgz
version: 0.17.1
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.29.1"
apiVersion: v2
appVersion: 0.29.1
created: "2022-04-21T08:15:18.091199835Z"
description: A Helm chart for flux2
digest: d2f4ac89757374dbf806f71efccf7cb175b3199a6a7fdaa3919d24b20d90f73d
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.17.0/flux2-0.17.0.tgz
version: 0.17.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Add podMonitor creation for the Prometheus Operator"
apiVersion: v2
appVersion: 0.28.3
created: "2022-04-14T06:52:08.321376165Z"
description: A Helm chart for flux2
digest: 3eed1a0a219b9771df1c4422f616938eab4e0336440869ea2e2d559888f15a39
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.16.0/flux2-0.16.0.tgz
version: 0.16.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.28.3"
apiVersion: v2
appVersion: 0.28.3
created: "2022-03-28T12:45:23.726903879Z"
description: A Helm chart for flux2
digest: 1ca8c1e12bd34bdab6e56e0b9c6c80212504fb92079fd19099b8e3e2f7883658
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.15.0/flux2-0.15.0.tgz
version: 0.15.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Fixed SecurityContext Template for notificationController"
apiVersion: v2
appVersion: 0.27.0
created: "2022-03-23T09:20:23.66582771Z"
description: A Helm chart for flux2
digest: e6d812756ca0bbfa9f555b69c3140c2f5d3f59d3a01ccbe526ea9f29afdbb88b
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.14.1/flux2-0.14.1.tgz
version: 0.14.1
- annotations:
artifacthub.io/changes: |
- "[Update]: Remove default resource.limits from flux components"
apiVersion: v2
appVersion: 0.27.0
created: "2022-03-02T16:19:33.954499226Z"
description: A Helm chart for flux2
digest: fcd1f6e230db98cdf5e3f67b6132ba1c7da0c79e6e8a69f580205f544e5d6bdd
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.14.0/flux2-0.14.0.tgz
version: 0.14.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.27.0"
apiVersion: v2
appVersion: 0.27.0
created: "2022-02-22T15:45:55.328646058Z"
description: A Helm chart for flux2
digest: ce91bd37c46380ad50d2b029a3e1beb1ee51db8423c5826c5856be8ae267c83f
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.13.0/flux2-0.13.0.tgz
version: 0.13.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.26.3"
apiVersion: v2
appVersion: 0.26.3
created: "2022-02-12T20:37:14.500679209Z"
description: A Helm chart for flux2
digest: 9c302a4ab8a133a73c6e66184070e419a30587d0f0969618faff21723b4a14d7
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.12.1/flux2-0.12.1.tgz
version: 0.12.1
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.26.2"
apiVersion: v2
appVersion: 0.26.2
created: "2022-02-08T10:14:57.048212026Z"
description: A Helm chart for flux2
digest: fca9c9baf2a80a0d9e7c56db18a03cfb70c9fa2596ce2d92ee96514faaf5f2a8
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.12.0/flux2-0.12.0.tgz
version: 0.12.0
- annotations:
artifacthub.io/changes: |
- "[Update]: Update App Version to upstream 0.26.1"
apiVersion: v2
appVersion: 0.26.1
created: "2022-02-07T10:03:55.323078058Z"
description: A Helm chart for flux2
digest: 39d69ee174423df771909136b9216563e11587cd7d45cb07f27ca5a4c80739c9
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.11.0/flux2-0.11.0.tgz
version: 0.11.0
- annotations:
artifacthub.io/changes: |
- "[Added]: Add support for extra K8s manifests"
apiVersion: v2
appVersion: 0.25.3
created: "2022-01-31T09:33:44.715755579Z"
description: A Helm chart for flux2
digest: 120bf5bce35506ec38c60a45bd479be0f037bebd6eed86e542761c9174daa514
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.10.0/flux2-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
appVersion: 0.25.3
created: "2022-01-28T11:42:01.98744528Z"
description: A Helm chart for flux2
digest: 75ab2e1e5a6e3ed36758dc6dcd914590a6bd3157c16ea6c9d0580a3463f5134f
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.9.2/flux2-0.9.2.tgz
version: 0.9.2
- apiVersion: v2
appVersion: 0.25.3
created: "2022-01-24T15:53:37.946410137Z"
description: A Helm chart for flux2
digest: 8b9e828ae59946db709600f11bb8dc5e1a7714d68970bcbb2d796817b88d560e
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.9.1/flux2-0.9.1.tgz
version: 0.9.1
- apiVersion: v2
appVersion: 0.25.3
created: "2022-01-20T20:00:11.228249579Z"
description: A Helm chart for flux2
digest: cbd1af9083a859e83601451b35e295fc5cf512b81d63823c4e4740ad1db147dc
name: flux2
sources:
- https://github.com/fluxcd-community/helm-charts
type: application
urls:
- https://github.com/fluxcd-community/helm-charts/releases/download/flux2-0.9.0/flux2-0.9.0.tgz
version: 0.9.0
- apiVersion: v2
appVersion: 0.24.1