-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.yaml
6594 lines (6594 loc) · 222 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:
apicurio:
- apiVersion: v2
created: "2024-01-16T10:04:44.332033209Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~11.6.6
description: Apicurio Studio API designer
digest: 5660120dc08a538b476226a9e7b6423752cae8e7458fac0097b2dd91dbd2ccbc
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.15/apicurio-1.0.15.tgz
version: 1.0.15
- apiVersion: v2
created: "2023-09-29T04:34:34.545432301Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~11.6.6
description: Apicurio Studio API designer
digest: 43e2dfb47f6df104b5b0fbd8aa68ae6daf2d24e8fd9e07e5f0e0707e31175e28
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.14/apicurio-1.0.14.tgz
version: 1.0.14
- apiVersion: v2
created: "2022-09-08T20:13:08.680881897Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~11.6.6
description: Apicurio Studio API designer
digest: 077088303527ff319e0ba5f7fa59332c73a1c625ddda60b20d4e596a1499e603
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.13/apicurio-1.0.13.tgz
version: 1.0.13
- apiVersion: v2
created: "2022-03-31T07:10:34.306497459Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 6a9b1435a8e7ea5d4a3ed3d0a535c8d4c235decdab37ff8334bfe558ce1c7bcf
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.11/apicurio-1.0.11.tgz
version: 1.0.11
- apiVersion: v2
created: "2022-03-30T17:37:50.519637396Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: c9c808855d4fef71d9c64c63860d581aba8f1a6cd30f4a6ffb4187632d7c5b03
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.10/apicurio-1.0.10.tgz
version: 1.0.10
- apiVersion: v2
created: "2022-03-30T14:31:27.329924975Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 99af3ca1974cef96652d5968d7fae8022aaa18f8c8344a63a49a3e59a6d10723
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.9/apicurio-1.0.9.tgz
version: 1.0.9
- apiVersion: v2
created: "2021-07-06T07:39:57.742718636Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: b3b5215db435e46efe4437ed4254ebbe5856877ae9a3c8d0b93ede29c042d884
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.8/apicurio-1.0.8.tgz
version: 1.0.8
- apiVersion: v2
created: "2021-05-28T07:00:08.638551667Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: aad3d9aa803e29d318a3b0de391a5e763c5c493802d87c8a03d63ca2cbe50bd2
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.7/apicurio-1.0.7.tgz
version: 1.0.7
- apiVersion: v2
created: "2021-05-22T15:41:43.050554309Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: c80ab9b141e90686cc11ee083a47f5b40a2dc178b0faaf18231a3a992ff5ef68
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.6/apicurio-1.0.6.tgz
version: 1.0.6
- apiVersion: v2
created: "2021-05-22T10:06:17.021453151Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 8a4dce7ce3efd1b0d8a49b4f499684efef7a52cd8033596a8636696f896c9f96
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.5/apicurio-1.0.5.tgz
version: 1.0.5
- apiVersion: v2
created: "2021-05-22T09:59:03.59317326Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 2bf6d5c86af97688ac9a1efb9d160a1e0094fe0b7547a3af73e85934d34954c0
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.4/apicurio-1.0.4.tgz
version: 1.0.4
- apiVersion: v2
created: "2021-05-22T09:51:13.944690763Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 116ebe41183a0d2a9907a7bac27ec22fd6912358c1ff797753bccd24fc052dcb
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.3/apicurio-1.0.3.tgz
version: 1.0.3
- apiVersion: v2
created: "2021-05-22T09:36:32.678876116Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: 820548ae1e3ccbe7df5064c303c0c294a52d6b724b281043f198bad835f76ece
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.2/apicurio-1.0.2.tgz
version: 1.0.2
- apiVersion: v2
created: "2021-05-22T09:11:27.089759179Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Apicurio Studio API designer
digest: aedd66364a617d858e61d6f7b4b4124f09d627f2eadb498c94af89e1822220e2
home: http://www.apicur.io/
icon: https://avatars.githubusercontent.com/u/28107283?s=400&v=4
keywords:
- api
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: apicurio
sources:
- https://github.com/Apicurio/apicurio-studio
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/apicurio
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/apicurio-1.0.1/apicurio-1.0.1.tgz
version: 1.0.1
fineract:
- apiVersion: v2
created: "2021-07-08T13:23:45.260933598Z"
dependencies:
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~8.4.1
description: 'Apache Fineract: A Platform for Microfinance'
digest: f49dbdb3432772740ab1411db355fb2a3ca4454820fa9d3076cb0199028d8c0b
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.7/fineract-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
created: "2021-07-06T15:27:20.528461944Z"
description: 'Apache Fineract: A Platform for Microfinance'
digest: 3da1e677aa8ff545dd4f40e60f9a328f4ff51c4ada27d6c9ec23749f07557390
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.6/fineract-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
created: "2021-07-06T15:05:39.014797573Z"
description: 'Apache Fineract: A Platform for Microfinance'
digest: f757be19c39f4766dce8bb6e97709a49ee16ecf1197ce3924844f8b7e251a03a
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.5/fineract-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
created: "2021-07-06T07:39:57.953719754Z"
description: 'Apache Fineract: A Platform for Microfinance'
digest: 99511373a1a9b761eb89875de34dfc54142af821ce7e0989be4515faf2afefd1
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.4/fineract-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
created: "2021-09-29T17:25:36.169599496Z"
dependencies:
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~8.4.1
description: 'Apache Fineract: A Platform for Microfinance'
digest: d0ae452d67827fc0c7cacdf817b975c14a126e42189d394ec8f007f430f47d16
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.3/fineract-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
created: "2021-06-03T15:47:54.678203364Z"
dependencies:
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~8.4.1
description: 'Apache Fineract: A Platform for Microfinance'
digest: 6989c5823e2a352ece3d08f8ad0b40f81d3c8c8aca227c03884c85c01a34c445
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.2/fineract-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2021-05-28T07:00:08.783222339Z"
dependencies:
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~8.4.1
description: 'Apache Fineract: A Platform for Microfinance'
digest: b448140ffb67e4331bed6fcdce8852b97429916b6fcb8b789c3470c743af56b5
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.1/fineract-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
created: "2021-05-06T18:46:24.936006152Z"
dependencies:
- condition: mysql.enabled
name: mysql
repository: https://charts.bitnami.com/bitnami
version: ~8.4.1
description: 'Apache Fineract: A Platform for Microfinance'
digest: 1c1f183bd8ebcbb334b1355966bc8c0a6124ad18f4dacbc66de123d5c2eb059e
home: https://github.com/apache/fineract
icon: https://fineract.apache.org/images/apache-fineract-logo.png
keywords:
- microfinance
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: fineract
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/fineract
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/fineract-0.1.0/fineract-0.1.0.tgz
version: 0.1.0
flagsmith:
- apiVersion: v2
created: "2022-09-08T20:13:08.883821461Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~11.6.6
description: Flagsmith - a Feature flag and remote configuration solution
digest: 7daadfe5fde111b25db37f64a7d1cd55172566b4b5d8fbac0ad0e3413da95198
home: https://flagsmith.com/
icon: https://avatars.githubusercontent.com/u/58150233?s=400&v=4
keywords:
- feature-flags
- remote-config
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: flagsmith
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/flagsmith
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/flagsmith-0.1.5/flagsmith-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
created: "2021-05-28T07:00:08.996446544Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Flagsmith - a Feature flag and remote configuration solution
digest: bd0cf058dd39450bf6cfe695baacb2659f95dba117605f1dbbd80295b425877e
home: https://flagsmith.com/
icon: https://avatars.githubusercontent.com/u/58150233?s=400&v=4
keywords:
- feature-flags
- remote-config
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: flagsmith
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/flagsmith
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/flagsmith-0.1.4/flagsmith-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
created: "2021-05-24T15:45:51.775029056Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Flagsmith - a Feature flag and remote configuration solution
digest: 10d41fb6684fa14f2cd9e8d5f46e01789605cc17907f6c84d7bbd7dd1e8b8496
home: https://flagsmith.com/
icon: https://avatars.githubusercontent.com/u/58150233?s=400&v=4
keywords:
- feature-flags
- remote-config
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: flagsmith
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/flagsmith
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/flagsmith-0.1.3/flagsmith-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
created: "2021-05-06T18:46:25.087383324Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Flagsmith - a Feature flag and remote configuration solution
digest: 153a966d91e4495d43502f1f4fcb600c71a3a56260aaaae71a114833de7c3775
home: https://flagsmith.com/
icon: https://avatars.githubusercontent.com/u/58150233?s=400&v=4
keywords:
- feature-flags
- remote-config
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: flagsmith
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/flagsmith
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/flagsmith-0.1.2/flagsmith-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
created: "2021-05-06T04:41:40.651042184Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
description: Flagsmith - a Feature flag and remote configuration solution
digest: dec3405f094aa59c41bddef867a5eaa4d127060cd479b1fe7329cdac3a7c5d9f
home: https://flagsmith.com/
icon: https://avatars.githubusercontent.com/u/58150233?s=400&v=4
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: flagsmith
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/flagsmith
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/flagsmith-0.1.1/flagsmith-0.1.1.tgz
version: 0.1.1
geonode:
- apiVersion: v2
created: "2022-05-17T11:37:50.21835886Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: fd16791d16daec20907072a62cb9cb94946eb62c3cd0d17d862c3007e1ecf344
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.16/geonode-0.1.16.tgz
version: 0.1.16
- apiVersion: v2
created: "2022-04-23T12:07:27.814411535Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: 7decea224b9d530c5799f5b6e384b3d0793467f6e23f203263a63154672ce5e0
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.15/geonode-0.1.15.tgz
version: 0.1.15
- apiVersion: v2
created: "2022-04-23T08:54:34.115594188Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: b98dd7549a6280fd6eeb6bef4347780d0f3a6818b0b43bc190b7293deccf3e60
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.14/geonode-0.1.14.tgz
version: 0.1.14
- apiVersion: v2
created: "2022-02-02T10:23:09.92043105Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: a763653a1bc0dba3b16e1969744b41fb20eaf02470534fcd559bed8ae06cc814
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.13/geonode-0.1.13.tgz
version: 0.1.13
- apiVersion: v2
created: "2022-02-02T09:59:42.559027764Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: 049a68df3fdaaed5320a7daca47ff387d048a230cf5a44d2c5ca46a559b93bd1
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.12/geonode-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
created: "2022-02-02T09:52:26.409064424Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: d29e56395414a74c60a44ecc11f6f147600302a480e7ec4a1fd8a6fb1c8d6526
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.11/geonode-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
created: "2021-12-06T12:50:31.649961012Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: 7893c88f3ae49aac43a0aa819a992e69646ce25621ae796e73c5586871eacee5
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.10/geonode-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
created: "2021-12-06T12:37:22.177993775Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: f03100abca6b678b2d504aea6b29f9a57660f12263ec3171ea21f219aa99dfbf
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.9/geonode-0.1.9.tgz
version: 0.1.9
- apiVersion: v2
created: "2021-12-06T10:30:07.890010763Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: 0425b1c0cbd29750b54e972b154e9bee8e082ea38882538351f5a955b9fb655f
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.8/geonode-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
created: "2021-12-06T08:48:36.585702256Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: a45434cb6232286ca4df2e0654aa7193a06bd234c1b9447dfb655f8ec253eed0
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.7/geonode-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
created: "2021-05-28T07:00:09.285989888Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: c5e36847732faacdeb4ca305b27d0bfba7faaaa472c3d7876fd2283b5e279bea
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.6/geonode-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
created: "2021-05-06T18:46:25.241054513Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: 075d03797585a8539b6b3e4ae6dcedf471c2c3311b551516325fec0f26026b10
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
keywords:
- geospatial
- gis
- cms
- maps
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources:
- https://github.com/one-acre-fund/oaf-public-charts/tree/main/charts/geonode
type: application
urls:
- https://github.com/one-acre-fund/oaf-public-charts/releases/download/geonode-0.1.5/geonode-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
created: "2021-05-06T04:41:40.791035939Z"
dependencies:
- condition: postgresql.enabled
name: postgresql
repository: https://charts.bitnami.com/bitnami
version: ~10.1.2
- condition: rabbitmq.enabled
name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: ~8.6.0
description: Geonode - a CMS for Geospatial data
digest: a366c696c7f04f11adfe4cbabf2612a9860b7eee5c03a4d15e3dbbcd3b346c4f
home: https://geonode.org/
icon: https://pbs.twimg.com/profile_images/1221883359/geonode_400x400.png
maintainers:
- email: yann.jouanique@gmail.com
name: Yann-J
name: geonode
sources: