-
Notifications
You must be signed in to change notification settings - Fork 47
/
index.yaml
2309 lines (2309 loc) · 70.5 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:
ollama:
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.4.2
links:
- name: Ollama release v0.4.2
url: https://github.com/ollama/ollama/releases/tag/v0.4.2
apiVersion: v2
appVersion: 0.4.2
created: "2024-11-16T19:22:13.850701+08:00"
description: Get up and running with large language models locally.
digest: e5b7677415cf1af484ebd0f000016a61f1bc615d7881876541f176d55f792d9b
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.66.0/ollama-0.66.0.tgz
version: 0.66.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.4.1
links:
- name: Ollama release v0.4.1
url: https://github.com/ollama/ollama/releases/tag/v0.4.1
- kind: added
description: add support for extraEnvFrom
links:
- name: Support envFrom in container spec
url: https://github.com/otwld/ollama-helm/pull/113
apiVersion: v2
appVersion: 0.4.1
created: "2024-11-10T14:40:07.398103+08:00"
description: Get up and running with large language models locally.
digest: b2e54eead6e25079fab57e6b1f5b6b233250efdc30afd79013089b75b48888c5
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.65.0/ollama-0.65.0.tgz
version: 0.65.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.4.0
links:
- name: Ollama release v0.4.0
url: https://github.com/ollama/ollama/releases/tag/v0.4.0
apiVersion: v2
appVersion: 0.4.0
created: "2024-11-07T12:50:58.244839+08:00"
description: Get up and running with large language models locally.
digest: c65b53d26f1195b33cb6713fb2e24dd98abd88f25f07b1e363cd32f913776573
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.64.0/ollama-0.64.0.tgz
version: 0.64.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: fixed
description: Minor bug
links:
- name: GitHub Issue "subPath specified but not used"
url: https://github.com/otwld/ollama-helm/issues/110
apiVersion: v2
appVersion: 0.3.14
created: "2024-11-04T07:58:29.447527+08:00"
description: Get up and running with large language models locally.
digest: 26aa41d5cbc0b577b39612de73cc2612e8a8b305717097f65dc7f6e0d93a3e79
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.63.1/ollama-0.63.1.tgz
version: 0.63.1
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.14
apiVersion: v2
appVersion: 0.3.14
created: "2024-10-21T13:29:54.028951+08:00"
description: Get up and running with large language models locally.
digest: 2001ece9d5ccb9f9eeba72bfaa6c8aea8e33cdc83aa0d20f99c1cdd849c6915e
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.63.0/ollama-0.63.0.tgz
version: 0.63.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.13
apiVersion: v2
appVersion: 0.3.13
created: "2024-10-13T14:44:14.327334+08:00"
description: Get up and running with large language models locally.
digest: 7d004970c09607cd88b0c2a2d5e812f8a37af5937b60815d052ac83a6d0d21ca
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.62.0/ollama-0.62.0.tgz
version: 0.62.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: fixed
description: set default updateStrategy to Recreate
- kind: added
description: add service.loadBalancerIP
apiVersion: v2
appVersion: 0.3.12
created: "2024-10-01T10:02:40.771854+08:00"
description: Get up and running with large language models locally.
digest: 5cacca203dce275b6bde04f2f9e7f5982e0e926441b7991bf8dbbecca82245a9
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.61.0/ollama-0.61.0.tgz
version: 0.61.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.12
apiVersion: v2
appVersion: 0.3.12
created: "2024-09-26T11:23:10.262541+08:00"
description: Get up and running with large language models locally.
digest: 01aade21ff9bd4e1254333f0bcd228c6e0d760c90ad87635ce05f2ac29b490d8
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.60.0/ollama-0.60.0.tgz
version: 0.60.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.11
- kind: fixed
description: lifecycle postStart hook wait ollama service before pulling models
- kind: removed
description: remove duplicated environment variables already defined in Dockerfile
apiVersion: v2
appVersion: 0.3.11
created: "2024-09-19T13:49:56.834431+08:00"
description: Get up and running with large language models locally.
digest: 6389e17ed5da81af54ddb3a6c86ee6b4186917388a46a8015c85f4119679ee85
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.59.0/ollama-0.59.0.tgz
version: 0.59.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.10
apiVersion: v2
appVersion: 0.3.10
created: "2024-09-10T13:22:43.043887+08:00"
description: Get up and running with large language models locally.
digest: 93cf51ddfc7de454752801a37423568ba07b35b7f4a8559241d5b16c726b9076
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.58.0/ollama-0.58.0.tgz
version: 0.58.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade app version to 0.3.9
apiVersion: v2
appVersion: 0.3.9
created: "2024-09-01T17:20:04.527512+08:00"
description: Get up and running with large language models locally.
digest: 135c4307c1e6d568c94a919f2df6a4f0a0cdf8a37b2ffcd7954d8de88de107e5
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.57.0/ollama-0.57.0.tgz
version: 0.57.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: added
description: add custom lifecycle
apiVersion: v2
appVersion: 0.3.8
created: "2024-08-31T07:23:44.668004+08:00"
description: Get up and running with large language models locally.
digest: edcbf2ba8ef763a4b4d38564323e16e1d1d62e63bc57b05e19835314f01d9fb8
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.56.0/ollama-0.56.0.tgz
version: 0.56.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.8
- kind: added
description: multiple MIG support
apiVersion: v2
appVersion: 0.3.8
created: "2024-08-28T14:09:50.022424+02:00"
description: Get up and running with large language models locally.
digest: 3396f2268dff0faf2df8f1a08f0f690ba0f83e320b42b1fb9f099160ce97f931
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.55.0/ollama-0.55.0.tgz
version: 0.55.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: added
description: add .Values.persistentVolume.volumeName
apiVersion: v2
appVersion: 0.3.6
created: "2024-08-19T14:11:16.924791+02:00"
description: Get up and running with large language models locally.
digest: 967617d8cff0daedf961d4f163adf1c4fcc8e99fd7d48c769d301fb941626758
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.54.0/ollama-0.54.0.tgz
version: 0.54.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.6
apiVersion: v2
appVersion: 0.3.6
created: "2024-08-15T13:45:57.277719+02:00"
description: Get up and running with large language models locally.
digest: 13e984b728cf2da92afe0926bfdb92eafb712fad1493fe667c20cab85e3a33e0
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.53.0/ollama-0.53.0.tgz
version: 0.53.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.4
apiVersion: v2
appVersion: 0.3.4
created: "2024-08-08T11:15:45.617316+02:00"
description: Get up and running with large language models locally.
digest: 371947bb501403f1685a41d14cda52bd38314567f4fa3406df65868dc99fc85d
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.52.0/ollama-0.52.0.tgz
version: 0.52.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: added
description: add topologySpreadConstraints
apiVersion: v2
appVersion: 0.3.3
created: "2024-08-05T10:09:47.68877+02:00"
description: Get up and running with large language models locally.
digest: 899fd91b15d8d11f401bc7b00aa24e1d6f7b476470a57a27b9054d0585da77fe
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.51.0/ollama-0.51.0.tgz
version: 0.51.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.3
apiVersion: v2
appVersion: 0.3.3
created: "2024-08-03T12:04:23.870771+02:00"
description: Get up and running with large language models locally.
digest: 2737cf23a65c7cc85d8ae5f3fefe9b4db0f1786fe35a5f3463ce3abe7c6c5620
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: OTWLD
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.50.0/ollama-0.50.0.tgz
version: 0.50.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.2
apiVersion: v2
appVersion: 0.3.2
created: "2024-08-01T13:38:08.044062+02:00"
description: Get up and running with large language models locally.
digest: 39449f4402440cb933c46bb632456b358f06aa1aef3fe6a1dd3792bf27d8933e
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.49.0/ollama-0.49.0.tgz
version: 0.49.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.1
apiVersion: v2
appVersion: 0.3.1
created: "2024-07-31T20:46:51.459055+02:00"
description: Get up and running with large language models locally.
digest: 28567acd1850424024ac4c54f6c436cc2e57d90fc9a177e4dbde83da5070cf76
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.48.0/ollama-0.48.0.tgz
version: 0.48.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.3.0
apiVersion: v2
appVersion: 0.3.0
created: "2024-07-26T11:49:11.47142+08:00"
description: Get up and running with large language models locally.
digest: 7fd32216bedd2604eefed534104aa5f85d8af2ae737583f15c7cd10f54eb2cf1
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.47.0/ollama-0.47.0.tgz
version: 0.47.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: added
description: add basic support for nvidia MIG
- kind: fixed
description: missing ollama.mountPath to knative service
- kind: changed
description: upgrade ollama to 0.2.8
apiVersion: v2
appVersion: 0.2.8
created: "2024-07-23T23:45:11.436993+08:00"
description: Get up and running with large language models locally.
digest: 06e7447181b67a1fed433ae0d80f9950370bb22b7d07b98b73a17576c4f64531
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.46.0/ollama-0.46.0.tgz
version: 0.46.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.2.7
apiVersion: v2
appVersion: 0.2.7
created: "2024-07-19T17:53:20.017652+08:00"
description: Get up and running with large language models locally.
digest: f68b1eb15d0c579f2c8aeca0862d20ca3974c5319b9e228d3e702e1595b319ab
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.45.0/ollama-0.45.0.tgz
version: 0.45.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.2.5
- kind: added
description: Add shared host namespace hostIPC, hostPID and hostNetwork
- kind: added
description: add ollama.mountPath to override default ollama mountPath
apiVersion: v2
appVersion: 0.2.5
created: "2024-07-16T13:12:23.238803+08:00"
description: Get up and running with large language models locally.
digest: ad11669620aad339316db19b576ee4ea996029ae0e0d39a4cdb465eb6d379aa5
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.44.0/ollama-0.44.0.tgz
version: 0.44.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.2.2
apiVersion: v2
appVersion: 0.2.2
created: "2024-07-13T13:20:41.392206+08:00"
description: Get up and running with large language models locally.
digest: 4ddb17acf956ec14bc96e5935398d91145f0a71298cff55e43a1593c0c71b79f
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.43.0/ollama-0.43.0.tgz
version: 0.43.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.2.1
apiVersion: v2
appVersion: 0.2.1
created: "2024-07-09T16:40:08.503428+08:00"
description: Get up and running with large language models locally.
digest: 2839bf03b410bcfb5855390f374045ea85d9b46fe627a3a23cf958121f6fe1e2
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.42.0/ollama-0.42.0.tgz
version: 0.42.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.2.0
apiVersion: v2
appVersion: 0.2.0
created: "2024-07-09T13:07:47.843647+08:00"
description: Get up and running with large language models locally.
digest: f1154fe44a99ac2a91bc9c77114b9482018afebfc81ded161409d5be7a35fc48
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.41.0/ollama-0.41.0.tgz
version: 0.41.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.48
apiVersion: v2
appVersion: 0.1.48
created: "2024-06-30T14:50:08.17614+08:00"
description: Get up and running with large language models locally.
digest: a2d9f703a0d390be660f2823b31ab4de47c04b0ddf7ee19f962d8e4ec79849ba
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.40.0/ollama-0.40.0.tgz
version: 0.40.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.47
apiVersion: v2
appVersion: 0.1.47
created: "2024-06-29T13:37:34.863046+08:00"
description: Get up and running with large language models locally.
digest: 2e01957fc15ae001723ddbaa6f2c94dc62646cef423cba46be2e2d61854054ae
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.39.0/ollama-0.39.0.tgz
version: 0.39.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.46
apiVersion: v2
appVersion: 0.1.46
created: "2024-06-27T02:44:08.640344+08:00"
description: Get up and running with large language models locally.
digest: 70e9131084c340b37b32c24ad224104d6431598ec192d1f43257dc389303ba22
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.38.0/ollama-0.38.0.tgz
version: 0.38.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.45
apiVersion: v2
appVersion: 0.1.45
created: "2024-06-21T14:28:48.464922+08:00"
description: Get up and running with large language models locally.
digest: b88323257e90d71a0da926c49831f418080a2b3f02694a1404c9bba755a7279b
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.37.0/ollama-0.37.0.tgz
version: 0.37.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: fixed
description: models must be a list not a map in values.yaml
apiVersion: v2
appVersion: 0.1.44
created: "2024-06-17T18:02:46.57127+08:00"
description: Get up and running with large language models locally.
digest: fb10aaa0a677ad94b3d793564a062b405a8e7d30a566293a49bc8001778a7ad4
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.36.1/ollama-0.36.1.tgz
version: 0.36.1
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.44
apiVersion: v2
appVersion: 0.1.44
created: "2024-06-14T12:02:11.945035+08:00"
description: Get up and running with large language models locally.
digest: f09267c90488ef0b9a667ca1f5295b565ac71ecc15c365c358c2995f696dc246
home: https://ollama.ai/
icon: https://ollama.ai/public/ollama.png
keywords:
- ai
- llm
- llama
- mistral
kubeVersion: ^1.16.0-0
maintainers:
- email: [email protected]
name: Otwld
name: ollama
sources:
- https://github.com/ollama/ollama
- https://github.com/otwld/ollama-helm
type: application
urls:
- https://github.com/otwld/ollama-helm/releases/download/ollama-0.36.0/ollama-0.36.0.tgz
version: 0.36.0
- annotations:
artifacthub.io/category: ai-machine-learning
artifacthub.io/changes: |
- kind: changed
description: upgrade ollama to 0.1.43
apiVersion: v2
appVersion: 0.1.43