forked from neo4j/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.yaml
1142 lines (1142 loc) · 46.3 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.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-cluster-core:
- 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: "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: "2022-11-29T20:22:07.552469Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.15
description: Neo4j is the world's leading graph database
digest: 05f739d29d54cc3a44cf94ccb54a3539195e2f18f5c8c8bd7f6ce8b580d8d4f6
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.15/neo4j-cluster-loadbalancer-4.4.15.tgz
version: 4.4.15
- apiVersion: v1
created: "2022-11-10T09:40:21.062605Z"
description: Neo4j Cluster LoadBalancer 4.4.13
digest: d9d02c1197eccfbc1cc5392a25db8ba7e77a68c84e04bf551f6d2b6aa0db7ee8
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.13/neo4j-cluster-loadbalancer-4.4.13.tgz
version: 4.4.13
- apiVersion: v1
created: "2022-11-10T09:40:21.062605Z"
description: Neo4j Cluster LoadBalancer 4.4.12
digest: 9a31b60a96b90c971616940b627feeae7a066040310d9c330504b84c2ff8186e
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.12/neo4j-cluster-loadbalancer-4.4.12.tgz
version: 4.4.12
- apiVersion: v1
created: "2022-08-10T15:51:09.04848+01:00"
description: Neo4j Cluster LoadBalancer 4.4.10
digest: 938bac28d48ac8ec11d91e676a6741d9aba4240d5040011f075533be4345c1f3
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.10/neo4j-cluster-loadbalancer-4.4.10.tgz
version: 4.4.10
- apiVersion: v1
created: "2022-07-22T11:26:19.911959+01:00"
description: Neo4j Cluster LoadBalancer 4.4.9
digest: 52ac006f57f4d3533540875cf942c212cf5495a36140acd91a7cac42adbcb660
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.9/neo4j-cluster-loadbalancer-4.4.9.tgz
version: 4.4.9
- apiVersion: v1
created: "2022-06-14T17:19:28.822666+01:00"
description: Neo4j Cluster LoadBalancer 4.4.8
digest: ff2144706d93875fa34dc6c6edbdd767bdd311f2906cb158b574e6933a2adb9f
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.8/neo4j-cluster-loadbalancer-4.4.8.tgz
version: 4.4.8
- apiVersion: v1
created: "2022-06-14T17:19:28.822666+01:00"
description: Neo4j Cluster LoadBalancer 4.4.7
digest: bdaeac1b278afb36e773820d9326fa026d0b025031827b1d1e97bafd1a962ffd
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.7/neo4j-cluster-loadbalancer-4.4.7.tgz
version: 4.4.7
- apiVersion: v1
created: "2022-04-27T14:23:21.993308+05:30"
description: Neo4j Cluster LoadBalancer 4.4.6
digest: e4ff18611225b1abc18eda0dbd56f21c98606993239a6306bf57ae77c5bf5e25
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.6/neo4j-cluster-loadbalancer-4.4.6.tgz
version: 4.4.6
- apiVersion: v1
created: "2022-04-13T13:43:05.291822+05:30"
description: Neo4j Cluster LoadBalancer 4.4.5
digest: 1a23bfc43f10975f1cdf07a019914090de91be50086053181ceba3aa0a0f9963
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.5/neo4j-cluster-loadbalancer-4.4.5.tgz
version: 4.4.5
- apiVersion: v1
created: "2022-03-08T09:59:16.654361Z"
description: Neo4j Cluster LoadBalancer 4.4.4
digest: e5754cc9d2a47b4abbc99f6efe49cbf8b78ad6cf846b89ed37c771f75a0750be
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.4/neo4j-cluster-loadbalancer-4.4.4.tgz
version: 4.4.4
- apiVersion: v1
created: "2022-01-14T11:00:24.393724Z"
description: Neo4j Cluster LoadBalancer 4.4.3
digest: 69a331184aca58c2a8c5b81a8baa39486da65f0f9b816c515669346f7f5c0f8d
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.3/neo4j-cluster-loadbalancer-4.4.3.tgz
version: 4.4.3
- apiVersion: v1
created: "2021-12-20T11:00:14.293713Z"
description: Neo4j Cluster LoadBalancer 4.4.2
digest: c2aa0376b47a621a1afeaa6c5ab2a85d17a7d3a21088e1bac88cc3d272e5e6c2
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.2/neo4j-cluster-loadbalancer-4.4.2.tgz
version: 4.4.2
- apiVersion: v1
created: "2021-12-15T11:00:13.392713Z"
description: Neo4j Cluster LoadBalancer 4.4.1
digest: 91bb7d58cd31fe5f5365cc7581f1325ac84a83a84ad15dbbc0b79534c2d7f7e8
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.1/neo4j-cluster-loadbalancer-4.4.1.tgz
version: 4.4.1
- apiVersion: v1
created: "2021-12-14T11:00:24.393724Z"
description: Neo4j Cluster LoadBalancer 4.4.0
digest: 0ca3ef1102a9c44e316f4832e624d8bb69a7957f82285eb27c164c1d65923c38
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-loadbalancer
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-loadbalancer
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.0/neo4j-cluster-loadbalancer-4.4.0.tgz
version: 4.4.0
neo4j-cluster-read-replica:
- apiVersion: v2
appVersion: 4.4.15
created: "2022-11-29T20:22:07.555794427Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.15
description: Neo4j is the world's leading graph database
digest: 5ee5ab36d365d2582a3839907ca9ed285e8a4765333a3190cb0adae55d8fb925
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-read-replica
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-read-replica-4.4.15.tgz
version: 4.4.15
- apiVersion: v1
created: "2022-11-10T09:37:24.95617Z"
description: Neo4j Cluster Read Replica 4.4.13
digest: 04b88b9a59724cfa9b2c1c9aa6184cf2e9907a04aef31c7d53afdaca4a898049
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.13/neo4j-cluster-read-replica-4.4.13.tgz
version: 4.4.13
- apiVersion: v1
created: "2022-11-10T09:37:24.95617Z"
description: Neo4j Cluster Read Replica 4.4.12
digest: 5330d912601e4e4119033e5199375f2c8e5c7b619f852b448a6a373d07708e92
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.12/neo4j-cluster-read-replica-4.4.12.tgz
version: 4.4.12
- apiVersion: v1
created: "2022-08-10T15:51:09.04848+01:00"
description: Neo4j Cluster Read Replica 4.4.10
digest: f55188fd09b689f65cef300f2fa34ec97fbc062381d1cb2e5a2d04e445131ef3
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.10/neo4j-cluster-read-replica-4.4.10.tgz
version: 4.4.10
- apiVersion: v1
created: "2022-07-22T11:26:19.911959+01:00"
description: Neo4j Cluster Read Replica 4.4.9
digest: 1978e02cf0941fcf8ffae7714255bd72531e28af769ad616cd47f19dc4949128
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.9/neo4j-cluster-read-replica-4.4.9.tgz
version: 4.4.9
- apiVersion: v1
created: "2022-06-14T17:18:07.798614+01:00"
description: Neo4j Cluster Read Replica 4.4.8
digest: 1a12c0afcde09d8b8ce35fd9657c095638b53168970f3d4af214aca700c74499
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.8/neo4j-cluster-read-replica-4.4.8.tgz
version: 4.4.8
- apiVersion: v1
created: "2022-06-14T17:18:07.798614+01:00"
description: Neo4j Cluster Read Replica 4.4.7
digest: 9e7a0e8a1315fb2e88aedf9ba6132cd8a96db66c2f0fb333558a617cbab83ea2
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.7/neo4j-cluster-read-replica-4.4.7.tgz
version: 4.4.7
- apiVersion: v1
created: "2022-04-27T14:22:45.681631+05:30"
description: Neo4j Cluster Read Replica 4.4.6
digest: 13295db3c4ee69026d7c40e6ba946b0ff680e2ee58486b5e129abd852d9e6fbb
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.6/neo4j-cluster-read-replica-4.4.6.tgz
version: 4.4.6
- apiVersion: v1
created: "2022-04-13T13:43:05.291822+05:30"
description: Neo4j Cluster Read Replica 4.4.5
digest: eefb4c3bbdb941d225d165a94b0bc3f66a9cfbdae75a22f573881bb7018cf249
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.5/neo4j-cluster-read-replica-4.4.5.tgz
version: 4.4.5
- apiVersion: v1
created: "2022-03-08T09:59:16.654361Z"
description: Neo4j Cluster Read Replica 4.4.4
digest: af60e540976b7ae05fc8056ab84020c4b40a54b171f31930d535b95e06ea0577
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.4/neo4j-cluster-read-replica-4.4.4.tgz
version: 4.4.4
- apiVersion: v1
created: "2022-01-14T11:00:24.393724Z"
description: Neo4j Cluster Read Replica 4.4.3
digest: 2d348805e448139d539b881789898f30b8deffa5a6f4f52068b4c244a0a681eb
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.3/neo4j-cluster-read-replica-4.4.3.tgz
version: 4.4.3
- apiVersion: v1
created: "2021-12-20T11:00:14.293713Z"
description: Neo4j Cluster Read Replica 4.4.2
digest: f4e8bf5d77fe30c9133dfdb4dbaa218f45b9b9bc8b9884f6e94033c03f6c2645
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.2/neo4j-cluster-read-replica-4.4.2.tgz
version: 4.4.2
- apiVersion: v1
created: "2021-12-15T11:00:13.392713Z"
description: Neo4j Cluster Read Replica 4.4.1
digest: baafae1186532bd58a3d3e21cca2fe192f941d9918904cbc576700241ccd1c5c
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.1/neo4j-cluster-read-replica-4.4.1.tgz
version: 4.4.1
- apiVersion: v1
created: "2021-12-14T11:00:24.393724Z"
description: Neo4j Cluster Read Replica 4.4.0
digest: b041a12541f9706c2372ac2c8697d46c3ad4d90df323514f6c4fe561818edc03
home: https://github.com/neo4j/helm-charts
name: neo4j-cluster-read-replica
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-cluster-read-replica
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.0/neo4j-cluster-read-replica-4.4.0.tgz
version: 4.4.0
neo4j-headless-service:
- apiVersion: v1
appVersion: '-'
created: "2022-12-21T13:36:20.499181Z"
description: Neo4j is the world's leading graph database
digest: 904b7d1f4ee3d94c13e90e88643decd12da650002133924e0683f4e698150920
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-headless-service
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-headless-service-5.3.0.tgz
version: 5.3.0
- apiVersion: v1
appVersion: '-'
created: "2022-11-22T11:37:30.838928Z"
description: Neo4j is the world's leading graph database
digest: 8f434963dca7819af8d34935fc0665ed9fc1e1de34e7c4f0e440c90e58bb0559
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-headless-service
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-headless-service-5.2.0.tgz
version: 5.2.0
- apiVersion: v1
created: "2022-11-11T15:02:01.879563Z"
description: Neo4j Headless Service 5.1.1
digest: 39a3e1e37e84dd6eaede9e427b633e96f2f59062b3977c8f657466a655e6bf4f
home: https://github.com/neo4j/helm-charts
name: neo4j-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.1/neo4j-headless-service-5.1.1.tgz
version: 5.1.1
- apiVersion: v1
created: "2022-11-09T15:53:01.189063Z"
description: Neo4j Headless Service 5.1.0
digest: 7e185963295d2c6ada90a55c6418d9b2965893c7047cfad113a0e3e91e958cb0
home: https://github.com/neo4j/helm-charts
name: neo4j-headless-service
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j-headless-service
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.0/neo4j-headless-service-5.1.0.tgz
version: 5.1.0
neo4j-persistent-volume:
- apiVersion: v1
appVersion: '-'
created: "2022-12-21T13:36:20.499525Z"
description: Sets up persistent disks suitable for a Neo4j Helm installation
digest: d7ab7aeed2cafae2e260bc75a7cc622db55f9c775a0d0d8fa7a99cc67fc2cce3
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-persistent-volume
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-persistent-volume-5.3.0.tgz
version: 5.3.0
- apiVersion: v1
appVersion: '-'
created: "2022-11-22T11:37:30.841401Z"
description: Sets up persistent disks suitable for a Neo4j Helm installation
digest: b177b4dc811e1eb37b56643525a0b09ea5c44ac4fc1c7cb9c946396f79333e30
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-persistent-volume
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-persistent-volume-5.2.0.tgz
version: 5.2.0
- apiVersion: v1
created: "2022-11-11T15:02:01.879563Z"
description: Neo4j Persistent Volume 5.1.1
digest: 234e67b220c47400a83b27c827d53c70e137a5faf605e2befee87c32212b7a37
home: https://github.com/neo4j/helm-charts
name: neo4j-persistent-volume
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j-persistent-volume
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.1/neo4j-persistent-volume-5.1.1.tgz
version: 5.1.1
- apiVersion: v1
created: "2022-11-09T15:53:01.189063Z"
description: Neo4j Persistent Volume 5.1.0
digest: 3d6dc2b9b3712a2b6f301113aab8034e681836e4d9309d913dad46bdbe9b3df0
home: https://github.com/neo4j/helm-charts
name: neo4j-persistent-volume
sources:
- https://github.com/neo4j/helm-charts/tree/5.1/neo4j-persistent-volume
urls:
- https://github.com/neo4j/helm-charts/releases/download/5.1.1/neo4j-persistent-volume-5.1.1.tgz
version: 5.1.0
neo4j-standalone:
- apiVersion: v2
appVersion: 4.4.15
created: "2022-11-29T20:22:07.559329136Z"
dependencies:
- name: neo4j-shared-templates
repository: file://../neo4j-shared-templates
version: 4.4.15
description: Neo4j is the world's leading graph database
digest: 23ca9151cc1ac6cc4ea4c27202f850168dd093f4ef252eaa91d5631bcc775351
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-standalone
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-standalone-4.4.15.tgz
version: 4.4.15
- apiVersion: v1
created: "2022-11-10T09:29:54.740516Z"
description: Neo4j Standalone 4.4.13
digest: fd0a4812daee093584823fe6e139626cd10bf63e27420974c704a2c95389130c
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.13/neo4j-standalone-4.4.13.tgz
version: 4.4.13
- apiVersion: v1
created: "2022-11-10T09:29:54.740516Z"
description: Neo4j Standalone 4.4.12
digest: dcfe968f14dd7ec6d7126d6d371ece4c699ba1cb5fb363ef1393549e678b13e5
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.12/neo4j-standalone-4.4.12.tgz
version: 4.4.12
- apiVersion: v1
created: "2022-08-10T15:50:18.517974+01:00"
description: Neo4j Standalone 4.4.10
digest: 286ff4688e4b98557d58276acd237ec228ebb2637245ac486fc0c04fdd565ee7
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.10/neo4j-standalone-4.4.10.tgz
version: 4.4.10
- apiVersion: v1
created: "2022-07-22T11:26:19.911959+01:00"
description: Neo4j Standalone 4.4.9
digest: 84b430a68814182acc04fb2bc07371d8be30cdac7d239fab11d7752051926dfb
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.9/neo4j-standalone-4.4.9.tgz
version: 4.4.9
- apiVersion: v1
created: "2022-06-14T17:15:27.677553+01:00"
description: Neo4j Standalone 4.4.8
digest: cc2b5562c9831b623bacb6cd0b466ba12f7df59d164fae72ada1016fbfdf1fd3
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.8/neo4j-standalone-4.4.8.tgz
version: 4.4.8
- apiVersion: v1
created: "2022-06-14T17:15:27.677553+01:00"
description: Neo4j Standalone 4.4.7
digest: d7dc275580a5c03fc9ee5e644eaba7b6124da5368eb5bdd670c39b869c45d5f7
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.7/neo4j-standalone-4.4.7.tgz
version: 4.4.7
- apiVersion: v1
created: "2022-04-27T14:22:10.274353+05:30"
description: Neo4j Standalone 4.4.6
digest: ea66c6a5bdcc7dbc53549868b1249c3353103d61647bc11b6ee71d54860332d3
home: https://github.com/neo4j/helm-charts
name: neo4j-standalone
sources:
- https://github.com/neo4j/helm-charts/tree/4.4/neo4j-standalone
urls:
- https://github.com/neo4j/helm-charts/releases/download/4.4.6/neo4j-standalone-4.4.6.tgz
version: 4.4.6
- apiVersion: v1
created: "2022-04-13T13:43:05.291822+05:30"