-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.yaml
3241 lines (3241 loc) · 112 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:
artifact-hub:
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for Radius recipes
- kind: added
description: Display signed badge for Inspektor Gadget artifacts
- kind: added
description: Populate chart labels for all resources
- kind: added
description: Allow adding extra containers to the hub pod from the chart
- kind: changed
description: Update db migration script to support pg_partman 5
- kind: changed
description: Banner frame style
- kind: changed
description: Bump Alpine to 3.20.3
- kind: changed
description: Bump Go to 1.23.1
- kind: changed
description: Bump Trivy to 0.56.1
- kind: changed
description: Bump OPM to 1.47.0
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Do not render outdated security reports summary
- kind: fixed
description: Pagination style on mobile devices
- kind: fixed
description: Issue with long texts on templates tooltips
- kind: fixed
description: Hide versions with no changes in changelog
- kind: fixed
description: Invalid Dockerfile reference in dev.md
- kind: fixed
description: Typo in repositories modal
- kind: security
description: Remove user sessions when password is updated
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.20.0
- name: hub
image: artifacthub/hub:v1.20.0
- name: tracker
image: artifacthub/tracker:v1.20.0
- name: scanner
image: artifacthub/scanner:v1.20.0
- name: trivy
image: aquasec/trivy:0.56.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.20.0
created: "2024-10-11T09:36:07.598248852Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Cloud Native packages.
digest: 70b4eeb350501319902ea9b85174af2caa341e217447a27d06ce42696f487930
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
- kcl
- headlamp
- inspektor gadget
- meshery
- opencost
- radius
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.20.0.tgz
version: 1.20.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for OpenCost plugins
- kind: added
description: GitHub flavored alerts in README files
- kind: added
description: ah lint now supports git versioning in Tekton packages
- kind: changed
description: Improve container image tracker source
- kind: changed
description: Sort ah lint output leaving errors at the end
- kind: changed
description: Update homepage for Incubation promotion
- kind: changed
description: Improve invalid org name error message
- kind: changed
description: Disable chunked transfer encoding
- kind: changed
description: Bump Go to 1.22.4
- kind: changed
description: Bump Alpine to 3.20.1
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Issue handling invalid CSRF token in webapp
- kind: fixed
description: Detect versions with build md in Helm OCI repos
- kind: fixed
description: Issue reading Kyverno policy files
- kind: fixed
description: Some input patterns in modals
- kind: fixed
description: Issue rendering some values schema definitions
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.19.0
- name: hub
image: artifacthub/hub:v1.19.0
- name: tracker
image: artifacthub/tracker:v1.19.0
- name: scanner
image: artifacthub/scanner:v1.19.0
- name: trivy
image: aquasec/trivy:0.50.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.19.0
created: "2024-06-27T13:23:08.100890143Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Cloud Native packages.
digest: 354ae8ee39894b315ab9aa1b3707acd372b4fe7bd0e3e8dd9bedc569ff83cdb1
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
- kcl
- headlamp
- inspektor gadget
- meshery
- opencost
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.19.0.tgz
version: 1.19.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for Inspektor Gadget gadgets
- kind: added
description: Support for Tekton StepActions
- kind: added
description: Support for Meshery Designs
- kind: added
description: Helm charts values schema badge
- kind: added
description: Sort search results by last updated
- kind: added
description: Display unique vulnerabilities in security report
- kind: added
description: KubeVersion field to Nova data dump
- kind: changed
description: Artifact Hub description message
- kind: changed
description: Upgrade grafana dashboard
- kind: changed
description: Bump Trivy to 0.50.1
- kind: changed
description: Bump Go to 1.22.2
- kind: changed
description: Bump Alpine to 3.19.1
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Versions precedence check
- kind: fixed
description: Issue selecting values in firefox
- kind: removed
description: Official badge from control panel repository card
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.18.0
- name: hub
image: artifacthub/hub:v1.18.0
- name: tracker
image: artifacthub/tracker:v1.18.0
- name: scanner
image: artifacthub/scanner:v1.18.0
- name: trivy
image: aquasec/trivy:0.50.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.18.0
created: "2024-04-18T11:25:01.966202605Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Cloud Native packages.
digest: 6b3ef27e22187b20e89c60a327bf07e9a87463d5fc5494a61f777fbc2ee49b3b
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
- kcl
- headlamp
- inspektor gadget
- meshery
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.18.0.tgz
version: 1.18.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for KCL modules
- kind: added
description: Support for Headlamp plugins
- kind: added
description: Some missing indexes to event table
- kind: added
description: OpenSSF Security Insights manifest
- kind: changed
description: Improve get stats database function performance
- kind: changed
description: Improve containers images modal
- kind: changed
description: Enable compression for some endpoints
- kind: changed
description: Validate urls in packages recommendations
- kind: changed
description: Extend Helm chart with more configuration options
- kind: changed
description: Bump Alpine to 3.19.0
- kind: changed
description: Bump Go to 1.21.6
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Issue rendering some stats graphs
- kind: fixed
description: Regression maintaining scroll position
- kind: fixed
description: Issue getting repository remote digest
- kind: fixed
description: Issue in API docs
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.17.0
- name: hub
image: artifacthub/hub:v1.17.0
- name: tracker
image: artifacthub/tracker:v1.17.0
- name: scanner
image: artifacthub/scanner:v1.17.0
- name: trivy
image: aquasec/trivy:0.44.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.17.0
created: "2024-01-15T10:40:43.322963299Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: b8af7b07b639964934828d89bb8cca81babac00b302d2bf97f56cfab3c9c6ea7
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
- kcl
- headlamp
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.17.0.tgz
version: 1.17.0
- annotations:
artifacthub.io/changes: |
- kind: security
description: Do not follow symlinks when reading certain files
- kind: security
description: Disable unsafe rego built-ins
- kind: security
description: Improve Docker Hub registry check
- kind: added
description: Optional custom labels for some resources in chart
- kind: changed
description: Bump Go to 1.21.1
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Issue in API documentation
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.16.0
- name: hub
image: artifacthub/hub:v1.16.0
- name: tracker
image: artifacthub/tracker:v1.16.0
- name: scanner
image: artifacthub/scanner:v1.16.0
- name: trivy
image: aquasec/trivy:0.44.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.16.0
created: "2023-09-13T17:16:37.5232478Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: 70b50217b223c5a54fbcbd1a653475f0fa4e1ba9ce9cc5c77b8e1a0d901cd48b
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.16.0.tgz
version: 1.16.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Governance and roadmap documents
- kind: added
description: Add API endpoint for Fairwinds Nova
- kind: added
description: Allow providing security context to cronjobs
- kind: changed
description: Some adjustments in packages search ranking
- kind: changed
description: Update Helm charts (OCI) installation instructions
- kind: changed
description: Update security process documentation
- kind: changed
description: Bump Alpine to 3.18.2
- kind: changed
description: Bump Go to 1.21.0
- kind: changed
description: Bump Trivy to 0.44.1
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Oras command in documentation
- kind: fixed
description: Some other minor bugs and improvements
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.15.0
- name: hub
image: artifacthub/hub:v1.15.0
- name: tracker
image: artifacthub/tracker:v1.15.0
- name: scanner
image: artifacthub/scanner:v1.15.0
- name: trivy
image: aquasec/trivy:0.44.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.15.0
created: "2023-08-24T11:44:16.951577795Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: 529148d17fad33cd5a36fe3ae946b9a847fef577c201e316a5f5b2849aedddd6
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.15.0.tgz
version: 1.15.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for Argo templates
- kind: added
description: Support for KubeArmor policies
- kind: added
description: Reduced motion support (accessibility)
- kind: added
description: Document how to embed artifacts on other websites
- kind: changed
description: Request charts content uncompressed
- kind: changed
description: Some minor UI improvements
- kind: changed
description: Updated official status definition
- kind: changed
description: Improve Kyverno policies docs
- kind: changed
description: Improve container images docs (add regctl commands)
- kind: changed
description: Bump Alpine to 3.17.3
- kind: changed
description: Bump Go to 1.20.2
- kind: changed
description: Upgrade Bootstrap to 5.2.3
- kind: changed
description: Upgrade react-router-dom to v6
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Include registry (if available) in check db image
- kind: fixed
description: Clean repeated keywords ignoring case
- kind: fixed
description: Some other minor bugs and improvements
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.14.0
- name: hub
image: artifacthub/hub:v1.14.0
- name: tracker
image: artifacthub/tracker:v1.14.0
- name: scanner
image: artifacthub/scanner:v1.14.0
- name: trivy
image: aquasec/trivy:0.37.3
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.14.0
created: "2023-05-01T13:24:58.398437861Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: ec8ce1db3aa9f862c4b04dcad390f73745c83c7a620ac0baea40ba69baee217d
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
- argo
- kubearmor
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.14.0.tgz
version: 1.14.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Support for Knative client plugins
- kind: added
description: Support for Backstage plugins
- kind: added
description: Category classifier based on ML model
- kind: added
description: Allow publishers to provide packages' category manually
- kind: added
description: Display category label in cards and package view
- kind: added
description: Filter for artifacts published by CNCF projects
- kind: added
description: Display badge on artifacts published by CNCF projects
- kind: added
description: Auto-focus search form input field
- kind: added
description: Chart option to disable sign up
- kind: added
description: Chart option to set ttlSecondsAfterFinished on dbMigrator job
- kind: added
description: Link to Linux Foundation Privacy Policy
- kind: changed
description: Redesign and reorganize badges
- kind: changed
description: Category filter now uses the new category field
- kind: changed
description: Sample search queries
- kind: changed
description: Bump Go to 1.20.1
- kind: changed
description: Bump Trivy to 0.37.3
- kind: changed
description: Bump OPM to 1.26.4
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: removed
description: Publisher and repository from filters column
- kind: fixed
description: Harcoded image pull policy in hub deployment
- kind: fixed
description: Some other minor bugs and improvements
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.13.0
- name: hub
image: artifacthub/hub:v1.13.0
- name: tracker
image: artifacthub/tracker:v1.13.0
- name: scanner
image: artifacthub/scanner:v1.13.0
- name: trivy
image: aquasec/trivy:0.37.3
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.13.0
created: "2023-03-01T16:02:25.335314706Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: 17775ceba922afd569a16496d20a1a19a5aa789e1a0ba8e22f1b691657d38672
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
- knative
- backstage
kubeVersion: '>= 1.19.0-0'
maintainers:
- email: [email protected]
name: Sergio
- email: [email protected]
name: Cintia
- email: [email protected]
name: Matt
name: artifact-hub
type: application
urls:
- https://artifacthub.github.io/helm-charts/artifact-hub-1.13.0.tgz
version: 1.13.0
- annotations:
artifacthub.io/changes: |
- kind: added
description: Experimental support for Kyverno policies
- kind: added
description: URL filter to repository search API endpoint
- kind: added
description: Allow specifying charts containers images platforms
- kind: added
description: Package alternative name to improve search results
- kind: added
description: CNCF banners to homepage
- kind: added
description: Option to disable default backend for ingress
- kind: added
description: Option to set security context from chart
- kind: changed
description: Refresh UI design
- kind: changed
description: OLM community operators install instructions
- kind: changed
description: Set auto generated digest in OLM operators pkgs
- kind: changed
description: Highlight current month and day in usage graphs
- kind: changed
description: Keep views tracked when a pkg or repo is removed
- kind: changed
description: Hide security report in pkgs older than 1 year
- kind: changed
description: Use credentials when listing repository tags
- kind: changed
description: Strip markdown from changes entries
- kind: changed
description: Update container images repositories document
- kind: changed
description: Adjust packages text search doc weights
- kind: changed
description: Bump Alpine to 3.17.1
- kind: changed
description: Bump Go to 1.19.5
- kind: changed
description: Bump Trivy to 0.36.1
- kind: changed
description: Upgrade backend and frontend dependencies
- kind: fixed
description: Issue setting default channel in OLM operators
- kind: fixed
description: Include targets with no vulns in security report
- kind: fixed
description: Scroll issue in search page
- kind: fixed
description: Some other minor bugs and improvements
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/images: |
- name: db-migrator
image: artifacthub/db-migrator:v1.12.0
- name: hub
image: artifacthub/hub:v1.12.0
- name: tracker
image: artifacthub/tracker:v1.12.0
- name: scanner
image: artifacthub/scanner:v1.12.0
- name: trivy
image: aquasec/trivy:0.36.1
artifacthub.io/links: |
- name: source
url: https://github.com/artifacthub/hub
- name: support
url: https://github.com/artifacthub/hub/issues
artifacthub.io/screenshots: |
- title: Home page
url: https://artifacthub.github.io/hub/screenshots/screenshot1.jpg
- title: Packages search
url: https://artifacthub.github.io/hub/screenshots/screenshot2.jpg
- title: Package details
url: https://artifacthub.github.io/hub/screenshots/screenshot3.jpg
- title: Security report
url: https://artifacthub.github.io/hub/screenshots/screenshot4.jpg
- title: Values schema
url: https://artifacthub.github.io/hub/screenshots/screenshot5.jpg
- title: Changelog
url: https://artifacthub.github.io/hub/screenshots/screenshot6.jpg
apiVersion: v2
appVersion: 1.12.0
created: "2023-01-27T18:08:34.329652876Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.helm.sh/stable
version: 8.2.1
description: Artifact Hub is a web-based application that enables finding, installing,
and publishing Kubernetes packages.
digest: d1455d0fefc7f0f2e13afe4cb79fda2248464d2efb23ed19c87f7b90fba8ff16
home: https://artifacthub.io
icon: https://artifacthub.github.io/helm-charts/logo.png
keywords:
- kubernetes
- helm
- falco
- opa
- olm
- tinkerbell actions
- krew
- tekton
- keda scalers
- coredns
- keptn
- containers images
- kubewarden
- gatekeeper
- kyverno
kubeVersion: '>= 1.19.0-0'