forked from neo4j/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
2459 lines (2459 loc) · 90.2 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:
neo4j:
- apiVersion: v1
appVersion: 5.9.0
created: "2023-06-16T17:18:42.083959957Z"
description: Neo4j is the world's leading graph database
digest: ff16de497774fd08559fc8571016ee0acb6fede00ba1a47b66eb178a4e7839d0
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.9.0/neo4j-5.9.0.tgz
version: 5.9.0
- apiVersion: v1
appVersion: 5.8.0
created: "2023-06-15T10:34:54.023136727Z"
description: Neo4j is the world's leading graph database
digest: 86e68d15cfa5f987437cef60a0206ac7cc52ec2c5ec751e3e1ac7beca177e416
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.8.0/neo4j-5.8.0.tgz
version: 5.8.0
- apiVersion: v1
appVersion: 5.7.0
created: "2023-04-25T14:19:49.151006758Z"
description: Neo4j is the world's leading graph database
digest: 38ca9f87c0f0a35bccc00b1f7c18b638fe85f277e0feea73364859d039cd1675
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.7.0/neo4j-5.7.0.tgz
version: 5.7.0
- apiVersion: v1
appVersion: 5.6.0
created: "2023-04-03T10:27:21.151599683Z"
description: Neo4j is the world's leading graph database
digest: 16f16cde35f5a07c348d44006e1776652ebdaf4f2bdfc73ac9b3d6a3dddff519
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.6.0/neo4j-5.6.0.tgz
version: 5.6.0
- apiVersion: v1
appVersion: 5.5.0
created: "2023-02-20T21:45:49.662355Z"
description: Neo4j is the world's leading graph database
digest: d592ace1a0412bcca4b3cb7916359198a056f547da7e691a2e3e218f24950c03
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.5.0/neo4j-5.5.0.tgz
version: 5.5.0
- apiVersion: v1
appVersion: 5.4.0
created: "2023-01-31T09:18:46.94205Z"
description: Neo4j is the world's leading graph database
digest: a9e1fdbeee42a318466079436a99d5f7269743289cb0a1a839b8178a8ce2a60a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.4.0/neo4j-5.4.0.tgz
version: 5.4.0
- apiVersion: v1
appVersion: 5.3.0
created: "2022-12-21T13:36:20.498795Z"
description: Neo4j is the world's leading graph database
digest: dbe687256467e9661319b4282c1d6d017ffe786ef6b06816cde82f4c813d01b5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.3.0/neo4j-5.3.0.tgz
version: 5.3.0
- apiVersion: v1
appVersion: 5.2.0
created: "2022-11-22T11:37:30.838527Z"
description: Neo4j is the world's leading graph database
digest: 7e7b78e9158b2b531b4d97daf5f09ba41b3fcaa9c6e5fee1063fef5d6418c9ee
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.2.0/neo4j-5.2.0.tgz
version: 5.2.0
- apiVersion: v1
created: "2022-11-11T15:02:01.879563Z"
description: Neo4j 5.1.1
digest: 8bb4aea4b9483813344be17d996563b164378bf6b259ef0aeb3f41862bc4c087
home: https://github.com/neo4j/helm-charts
name: neo4j
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.1/neo4j-5.1.1.tgz
version: 5.1.1
- apiVersion: v1
created: "2022-11-09T15:53:01.189063Z"
description: Neo4j 5.1.0
digest: 21c989a31aa158a5ee583165c2a67b7148fa980d59e17743fefbd84aa00da5b8
home: https://github.com/neo4j/helm-charts
name: neo4j
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.0/neo4j-5.1.0.tgz
version: 5.1.0
neo4j-admin:
- apiVersion: v1
appVersion: 5.9.0
created: "2023-06-16T17:18:42.085288232Z"
description: Neo4j is the world's leading graph database
digest: 36f7cf48c0492ebd3ddf611f3646a14d321aea6c58647fbe5d8ab9b11ed49dd1
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.9.0/neo4j-admin-5.9.0.tgz
version: 5.9.0
- apiVersion: v1
appVersion: 5.8.0
created: "2023-06-15T10:34:54.024452325Z"
description: Neo4j is the world's leading graph database
digest: 763097f15de187d65ea327269dd2bc8ed50a9a13830b97a4fa4c62f0ab5c996e
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.8.0/neo4j-admin-5.8.0.tgz
version: 5.8.0
- apiVersion: v1
appVersion: 4.4.21
created: "2023-06-22T08:18:14.626780867Z"
description: Neo4j is the world's leading graph database
digest: b9356e2f320412369c8b0b643e2a6bce12ba774c936e6890bb7b387489e92bb3
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.21/neo4j-admin-4.4.21.tgz
version: 4.4.21
- apiVersion: v1
appVersion: 4.4.20
created: "2023-06-20T16:14:24.043606244Z"
description: Neo4j is the world's leading graph database
digest: 395635632cf13e38c58e521e01b8146f644db054b3b19edf0d5fb2cfd1128b59
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-admin
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.20/neo4j-admin-4.4.20.tgz
version: 4.4.20
neo4j-cluster-core:
- apiVersion: v2
appVersion: 4.4.21
created: "2023-06-22T08:18:14.630009034Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.21
description: Neo4j is the world's leading graph database
digest: c0e09a1f52b72d25a0c9ed72283307a0dbe41c1e4accead1c1bd6fb460e24dd3
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.21/neo4j-cluster-core-4.4.21.tgz
version: 4.4.21
- apiVersion: v2
appVersion: 4.4.20
created: "2023-06-20T16:14:24.049997412Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.20
description: Neo4j is the world's leading graph database
digest: 5074b332668c9a648dc1c121e52d4647d69b6f0b5894e5afc29b988a50e2af28
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.20/neo4j-cluster-core-4.4.20.tgz
version: 4.4.20
- apiVersion: v2
appVersion: 4.4.19
created: "2023-03-29T10:13:34.015067329Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.19
description: Neo4j is the world's leading graph database
digest: a1c4979eaaaa86691cdb63c66497765ec46112920c86b4d37756269498126e34
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.19/neo4j-cluster-core-4.4.19.tgz
version: 4.4.19
- apiVersion: v2
appVersion: 4.4.18
created: "2023-02-27T10:22:15.552085523Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.18
description: Neo4j is the world's leading graph database
digest: 22c226325b4decd037ef61f86afac268c5e8bf519446e8e5793622ffeec20f77
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.18/neo4j-cluster-core-4.4.18.tgz
version: 4.4.18
- apiVersion: v2
appVersion: 4.4.17
created: "2023-02-10T15:31:08.260345449Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.17
description: Neo4j is the world's leading graph database
digest: 3b43a69e0d660894491078da456b564940915520b2b1b50fd640fe6f3e49773a
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.17/neo4j-cluster-core-4.4.17.tgz
version: 4.4.17
- apiVersion: v2
appVersion: 4.4.16
created: "2023-01-04T16:37:13.545454451Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.16
description: Neo4j is the world's leading graph database
digest: 7dafdd157418b5b93777da0f354ab14bb2dbb282d07511b94c2299994d841fdb
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.16/neo4j-cluster-core-4.4.16.tgz
version: 4.4.16
- apiVersion: v2
appVersion: 4.4.15
created: "2022-11-29T20:22:07.550057474Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.15
description: Neo4j is the world's leading graph database
digest: 86c838d33575b8a7f6f9f1c10b51444f0ddba04d9d2b70ac76ae6e548f5a012d
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.15/neo4j-cluster-core-4.4.15.tgz
version: 4.4.15
- apiVersion: v1
created: "2022-11-10T09:31:21.733223Z"
description: Neo4j Cluster Core 4.4.13
digest: 5035ba1eae9d1a293caeaea446b78a4406b3db86cb870d8beb487f7a07bb7d0b
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.13/neo4j-cluster-core-4.4.13.tgz
version: 4.4.13
- apiVersion: v1
created: "2022-11-10T09:31:21.733223Z"
description: Neo4j Cluster Core 4.4.12
digest: 86a5c80a0f93cf4d65e9d9df7e7750f3f474ca5f2b55f6c69aaf495ee2f003e2
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.12/neo4j-cluster-core-4.4.12.tgz
version: 4.4.12
- apiVersion: v1
created: "2022-08-10T15:51:09.04848+01:00"
description: Neo4j Cluster Core 4.4.10
digest: a04e417567fdfd91d23882da1f3e9e3ab429911b15f78381f6913b43c376431d
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.10/neo4j-cluster-core-4.4.10.tgz
version: 4.4.10
- apiVersion: v1
created: "2022-07-22T11:26:19.911959+01:00"
description: Neo4j Cluster Core 4.4.9
digest: 36250985fe8ec091feac4a2205bbae12306eca5f1a9bc0e2d284df532ee1f8c9
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.9/neo4j-cluster-core-4.4.9.tgz
version: 4.4.9
- apiVersion: v1
created: "2022-06-14T17:18:07.798614+01:00"
description: Neo4j Cluster Core 4.4.8
digest: df0a845f3fd4faeb1a809b23234f43186bbc823419680f94a74b89e989095365
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.8/neo4j-cluster-core-4.4.8.tgz
version: 4.4.8
- apiVersion: v1
created: "2022-06-14T17:18:07.798614+01:00"
description: Neo4j Cluster Core 4.4.7
digest: 8605aecc614ce3ae5c1cdf230b93b61b6893ee1075cf078bcdd84ef532287294
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.7/neo4j-cluster-core-4.4.7.tgz
version: 4.4.7
- apiVersion: v1
created: "2022-04-27T14:22:10.274353+05:30"
description: Neo4j Cluster Core 4.4.6
digest: ff4bd3d71fee287ce32605e2f567c24866df669ca47790d02f54900321dcd6f1
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.6/neo4j-cluster-core-4.4.6.tgz
version: 4.4.6
- apiVersion: v1
created: "2022-04-13T13:43:05.291822+05:30"
description: Neo4j Cluster Core 4.4.5
digest: 2c99253398bca9a5310e4430bb01dcbd094da27e00f69ad1a28aeadceaa3a7e1
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.5/neo4j-cluster-core-4.4.5.tgz
version: 4.4.5
- apiVersion: v1
created: "2022-03-08T09:59:16.654361Z"
description: Neo4j Cluster Core 4.4.4
digest: 6af0d51aa92d66cb816a0d355b73b5d687e3595f79804eb78beee328befb0770
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.4/neo4j-cluster-core-4.4.4.tgz
version: 4.4.4
- apiVersion: v1
created: "2022-01-14T11:00:24.393724Z"
description: Neo4j Cluster Core 4.4.3
digest: 0512147642c38f6c1f608144598715cb0ecae0af661b57a070e8a56aaa5192dc
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.3/neo4j-cluster-core-4.4.3.tgz
version: 4.4.3
- apiVersion: v1
created: "2021-12-20T11:00:14.293713Z"
description: Neo4j Cluster Core 4.4.2
digest: f01ef8f97a892b4a86d8139f1b088d12b0f8c6ad124e81e10eaba77c6bb6cebc
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.2/neo4j-cluster-core-4.4.2.tgz
version: 4.4.2
- apiVersion: v1
created: "2021-12-15T11:00:13.392713Z"
description: Neo4j Cluster Core 4.4.1
digest: 22a79ae4f5648735c2842d032a7073f6f5b33a00625b4a13815f98a1fa80d2b9
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.1/neo4j-cluster-core-4.4.1.tgz
version: 4.4.1
- apiVersion: v1
created: "2021-12-14T11:00:24.393724Z"
description: Neo4j Cluster Core 4.4.0
digest: 90803c044253bdc51012f3e6cf0f7ce5a0510e7eff6acc034a685994ef49643f
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-core
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-core
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.0/neo4j-cluster-core-4.4.0.tgz
version: 4.4.0
neo4j-cluster-headless-service:
- apiVersion: v2
appVersion: '-'
created: "2023-06-22T08:18:14.631297494Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.21
description: Neo4j is the world's leading graph database
digest: bbae988617b0c55340a0dec70f59762edbd10f2280c3337a93396ab03843a2ef
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.21/neo4j-cluster-headless-service-4.4.21.tgz
version: 4.4.21
- apiVersion: v2
appVersion: '-'
created: "2023-06-20T16:14:24.051170088Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.20
description: Neo4j is the world's leading graph database
digest: 0e11fdc3fa593c9f36357c14c3ab5d22435f49b40ab4677ec77a42cce1a08bf5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.20/neo4j-cluster-headless-service-4.4.20.tgz
version: 4.4.20
- apiVersion: v2
appVersion: '-'
created: "2023-03-29T10:13:34.016140075Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.19
description: Neo4j is the world's leading graph database
digest: bf070111f6ff767706637f9064115ec86b094654cb78763fd140695eb9387fc5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.19/neo4j-cluster-headless-service-4.4.19.tgz
version: 4.4.19
- apiVersion: v2
appVersion: '-'
created: "2023-02-27T10:22:15.553408166Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.18
description: Neo4j is the world's leading graph database
digest: 18afff54bedc8923e337dd7f4590b2cc6b1b40a0372b16703e4e6f3d98014153
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.18/neo4j-cluster-headless-service-4.4.18.tgz
version: 4.4.18
- apiVersion: v2
appVersion: '-'
created: "2023-02-10T15:31:08.26227851Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.17
description: Neo4j is the world's leading graph database
digest: 4d3b8e5d2ebcc866cac49fbd5a8125210dcaa9a2493eecd936b81952d3032387
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.17/neo4j-cluster-headless-service-4.4.17.tgz
version: 4.4.17
- apiVersion: v2
appVersion: '-'
created: "2023-01-04T16:37:13.546848578Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.16
description: Neo4j is the world's leading graph database
digest: b05876234f5f5facfb5f173a2960022d6ee7545efdaec05d58ee9cc6a8e7d390
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.16/neo4j-cluster-headless-service-4.4.16.tgz
version: 4.4.16
- apiVersion: v2
appVersion: '-'
created: "2022-11-29T20:22:07.551336218Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.15
description: Neo4j is the world's leading graph database
digest: 935e5b4441bb65792d2397124f14f7a3e6b8280a643ad3986fd06f29227b1ae5
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.15/neo4j-cluster-headless-service-4.4.15.tgz
version: 4.4.15
- apiVersion: v1
created: "2022-11-10T09:41:17.676941Z"
description: Neo4j Cluster Headless Service 4.4.13
digest: 3ddef642bfddf79766a45a814999cccfba075168954f1e51941bca5bf5623fca
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.13/neo4j-cluster-headless-service-4.4.13.tgz
version: 4.4.13
- apiVersion: v1
created: "2022-11-10T09:41:17.676941Z"
description: Neo4j Cluster Headless Service 4.4.12
digest: 34c65efa5f06c920b89a87ebad657a229ef4d56848141fadb9cb6f4e0e9decc1
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.12/neo4j-cluster-headless-service-4.4.12.tgz
version: 4.4.12
- apiVersion: v1
created: "2022-08-10T15:51:09.04848+01:00"
description: Neo4j Cluster Headless Service 4.4.10
digest: eeb307833a0f2b7f20b172ad9ca6af577634aad45d15d405db12db9abf561bd6
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.10/neo4j-cluster-headless-service-4.4.10.tgz
version: 4.4.10
- apiVersion: v1
created: "2022-07-22T11:26:19.911959+01:00"
description: Neo4j Cluster Headless Service 4.4.9
digest: 9f14171f64d215cde813df002267b48d6dfaaceaa7dc64f830c18b9cabb5322c
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.9/neo4j-cluster-headless-service-4.4.9.tgz
version: 4.4.9
- apiVersion: v1
created: "2022-06-14T17:20:49.438386+01:00"
description: Neo4j Cluster Headless Service 4.4.8
digest: c1cd65d2031bf3c3037f74913101bc77580c151bc1787dbf8f1205a5b3ba44b4
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.8/neo4j-cluster-headless-service-4.4.8.tgz
version: 4.4.8
- apiVersion: v1
created: "2022-06-14T17:20:14.024256+01:00"
description: Neo4j Cluster Headless Service 4.4.7
digest: 3d2cdf743b44bd84446c0bdaf67d191f6c95343cad757fe2bac06ec858aa042e
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.7/neo4j-cluster-headless-service-4.4.7.tgz
version: 4.4.7
- apiVersion: v1
created: "2022-04-27T14:24:20.149116+05:30"
description: Neo4j Cluster Headless Service 4.4.6
digest: e90dbc766eecfe095d06c2e2f6bcba214f191cc24ccb7c75287f30d3ce516fae
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.6/neo4j-cluster-headless-service-4.4.6.tgz
version: 4.4.6
- apiVersion: v1
created: "2022-04-13T13:43:05.291822+05:30"
description: Neo4j Cluster Headless Service 4.4.5
digest: c8bf5049c7032381c6fe4257468363c17e687725e768d0fe68c9179cdfe5a945
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.5/neo4j-cluster-headless-service-4.4.5.tgz
version: 4.4.5
- apiVersion: v1
created: "2022-03-08T09:59:16.654361Z"
description: Neo4j Cluster Headless Service 4.4.4
digest: 455714c753182a062f6a31558acc6c71f73179ab03526a8333dffb840002b93e
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.4/neo4j-cluster-headless-service-4.4.4.tgz
version: 4.4.4
- apiVersion: v1
created: "2022-01-14T11:00:24.393724Z"
description: Neo4j Cluster Headless Service 4.4.3
digest: 52e71db8e48c50808e9c8b1bbc36eda80307d58e77db0d657261d510d832d8ee
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.3/neo4j-cluster-headless-service-4.4.3.tgz
version: 4.4.3
- apiVersion: v1
created: "2021-12-20T11:00:14.293713Z"
description: Neo4j Cluster Headless Service 4.4.2
digest: 525e87b175c1ff41441cf80785259cf999f37573e7fea5a598eef8f26084404c
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.2/neo4j-cluster-headless-service-4.4.2.tgz
version: 4.4.2
- apiVersion: v1
created: "2021-12-15T11:00:13.392713Z"
description: Neo4j Cluster Headless Service 4.4.1
digest: 0ad4af85c83ccd8f2d1ff4391f968d34661607bd9f241015ef7612f5a7dad081
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.1/neo4j-cluster-headless-service-4.4.1.tgz
version: 4.4.1
- apiVersion: v1
created: "2022-01-14T11:00:24.393724Z"
description: Neo4j Cluster Headless Service 4.4.0
digest: 7786b8a841f5488377dbf6b65a1827af971e17923716f83635fb6bbe91aeed38
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.0/neo4j-cluster-headless-service-4.4.0.tgz
version: 4.4.0
neo4j-cluster-loadbalancer:
- apiVersion: v2
appVersion: '-'
created: "2023-06-22T08:18:14.632249132Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.21
description: Neo4j is the world's leading graph database
digest: ab0a4e94a81b2871f35dcbde0b3946a4698a3dd7d6acabb4e268ded55d795874
home: https://www.neo4j.com
icon: http://info.neo4j.com/rs/773-GON-065/images/neo4j_logo.png
keywords:
- graph
- database
- cypher
maintainers:
- email: [email protected]
name: bfeshti
- email: [email protected]
name: harshitsinghvi22
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/neo4j
- https://github.com/neo4j/docker-neo4j
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.21/neo4j-cluster-loadbalancer-4.4.21.tgz
version: 4.4.21
- apiVersion: v2
appVersion: '-'
created: "2023-06-20T16:14:24.052148112Z"
dependencies: