-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.yaml
1218 lines (1218 loc) · 46.7 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:
relay-proxy:
- apiVersion: v2
appVersion: v1.40.0
created: "2024-12-13T20:31:06.007460657Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 5ef4621011faa1181c52e9d2fc0d8ee23ea77c79126ae38411b904b727195533
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.40.0.tgz
version: 1.40.0
- apiVersion: v2
appVersion: v1.39.1
created: "2024-11-23T20:01:18.827235528Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 28daf8af1f7f60839704ae3dd9f8b333559fb28df3c7e04910480d230f56c814
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.39.1.tgz
version: 1.39.1
- apiVersion: v2
appVersion: v1.39.0
created: "2024-11-23T17:03:38.722238097Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: bd3b6e758ac63ced4d2ebeb226d680c84634ed1d351ebec9b17affd6500d7578
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.39.0.tgz
version: 1.39.0
- apiVersion: v2
appVersion: v1.38.0
created: "2024-11-08T20:41:25.363024526Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 484879a69355a25515a9bc30ee5af1d67e568e6a596388813dae1000195616de
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.38.0.tgz
version: 1.38.0
- apiVersion: v2
appVersion: v1.37.1
created: "2024-10-25T07:44:24.570932627Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 8c210e4458a93709ca8689ccab4179c1a0337e4f954a7cefbb474883c2c6ab44
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.37.1.tgz
version: 1.37.1
- apiVersion: v2
appVersion: v1.37.0
created: "2024-10-24T13:46:12.942874585Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 876bee61d3afafb05aefd540fadf227f0ff2257aa1e494bbf06fd34e532193e9
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.37.0.tgz
version: 1.37.0
- apiVersion: v2
appVersion: v1.36.1
created: "2024-10-11T15:57:57.440082634Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a8d6aac4f17f2ba39614f2d85f05d4530ccddc26e21e81e7743206c28f4e504b
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.36.1.tgz
version: 1.36.1
- apiVersion: v2
appVersion: v1.36.0
created: "2024-10-09T20:03:30.155534443Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 61b1e907c06185f8ac9c1cda1dab44c97fc3c40ab71b45f467cd267175554805
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.36.0.tgz
version: 1.36.0
- apiVersion: v2
appVersion: v1.35.0
created: "2024-09-27T16:34:19.901562716Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 6c30845397221a32488fff366fb2c9bf076b906b82687d5d0c18ca601c92180e
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.35.0.tgz
version: 1.35.0
- apiVersion: v2
appVersion: v1.34.3
created: "2024-09-20T18:27:42.766869532Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: bdf9e54111963756059e346e98fc9a8a0b5b86e4290659e793c35f674e27d472
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.34.3.tgz
version: 1.34.3
- apiVersion: v2
appVersion: v1.34.2
created: "2024-09-18T20:58:53.77938165Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 6c194304dffa5c0e289c0a9078517b9ab76de388229f9f26cc562794da1262a9
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.34.2.tgz
version: 1.34.2
- apiVersion: v2
appVersion: v1.34.1
created: "2024-09-18T17:57:29.32429054Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 36668d1c3c65199c3c253bbc05ac23e4a628669f2aa1495a85fabfc11b74c140
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.34.1.tgz
version: 1.34.1
- apiVersion: v2
appVersion: v1.34.0
created: "2024-09-13T15:14:33.942539606Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a2294a1e2dba49a9f5d15fa2805c2e38d1e8f7cf7fe94e2603606605b9c5f357
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.34.0.tgz
version: 1.34.0
- apiVersion: v2
appVersion: v1.33.0
created: "2024-09-02T12:39:21.401780372Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 279fc85731449b888c6c75d5f3ff5684a112921a037a301066c51e8414f0de0d
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.33.0.tgz
version: 1.33.0
- apiVersion: v2
appVersion: v1.32.0
created: "2024-08-08T13:32:30.10686519Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 43a7698043faaf1beb20c188e8ca44cd79036af038b2747335d6d7fe5f56cbfe
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.32.0.tgz
version: 1.32.0
- apiVersion: v2
appVersion: v1.31.2
created: "2024-07-22T22:48:43.689407412Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 50b43f291ea0fba2615a7f37ccd35e687dd7dca0e63a23b3bd2a7ac28f1fa472
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.31.2.tgz
version: 1.31.2
- apiVersion: v2
appVersion: v1.31.1
created: "2024-07-09T14:51:38.440719268Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 281893babb94643592ddcce92401550f3dc4d0213de9816d8c0b13266a877cad
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.31.1.tgz
version: 1.31.1
- apiVersion: v2
appVersion: v1.31.0
created: "2024-07-03T20:03:51.958379459Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 9752abc4de45613802f6b931466457e8b1d4cca540f803bb30741f2c9df887b1
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.31.0.tgz
version: 1.31.0
- apiVersion: v2
appVersion: v1.30.0
created: "2024-06-12T15:38:43.925976097Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 76920c00ea41eafde728f8bd05c0e063e865420eb7688556cb92a4af3bd2ad0d
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.30.0.tgz
version: 1.30.0
- apiVersion: v2
appVersion: v1.29.0
created: "2024-06-12T09:10:02.46656038Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: ff7423e81f19194a8882b519680dcf0059deeb53abb577217a4bd0465dcc12b6
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.29.0.tgz
version: 1.29.0
- apiVersion: v2
appVersion: v1.28.2
created: "2024-05-24T11:40:14.784445871Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: fcdfd67fa6a76fb20df24ee5004471970e202702671ef186f7613fa87887d528
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.28.2.tgz
version: 1.28.2
- apiVersion: v2
appVersion: v1.28.1
created: "2024-05-21T21:42:19.725728988Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 87beeadff39fec6e1ffc43c4b534663ebed348d03287a9d0fdca3f411c96b84a
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.28.1.tgz
version: 1.28.1
- apiVersion: v2
appVersion: v1.28.0
created: "2024-05-17T15:22:24.770013471Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 57ac5eadfcc3a3bdd60123a91da0da26211af4b27f5ab1320976762e7b40147b
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.28.0.tgz
version: 1.28.0
- apiVersion: v2
appVersion: v1.27.0
created: "2024-05-06T09:17:25.772112386Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 47968daa04b588550f5c15b3154cd40f745cead9013056e290de47b2a2d9d291
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.27.0.tgz
version: 1.27.0
- apiVersion: v2
appVersion: v1.26.0
created: "2024-05-02T21:05:20.822454067Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a89fabb640a5983db377fdff862f22ee69ddbeeff790959b276233dede96b7f7
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.26.0.tgz
version: 1.26.0
- apiVersion: v2
appVersion: v1.25.1
created: "2024-04-15T22:00:26.945007271Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: edd585287e3b113d91b5b06a2c4db8e752afbb88686d47c5349f4d62c4e91b7e
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.25.1.tgz
version: 1.25.1
- apiVersion: v2
appVersion: v1.25.0
created: "2024-04-06T17:00:29.453135878Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: d2c7d7cb3879159934eaad466ab0d388f0fac2ec6cbba09f2a08eb0786bef428
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.25.0.tgz
version: 1.25.0
- apiVersion: v2
appVersion: v1.24.2
created: "2024-03-27T09:32:33.85444645Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 94ef7548f7daa8809827d377af2dcd9ed7d4639e883dbe81ebd011a95d993844
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.24.2.tgz
version: 1.24.2
- apiVersion: v2
appVersion: v1.24.1
created: "2024-03-24T19:55:17.278480407Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 2d4e1f4350cbd31ad0ffde5d24ddde7086766a35936453356bb6529566745e00
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.24.1.tgz
version: 1.24.1
- apiVersion: v2
appVersion: v1.24.0
created: "2024-03-13T22:40:58.792594771Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 2672eaad2f50e9ad32a2e35fb0f6e890c5628c4df7716a3818e1ee31a3dc9247
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.24.0.tgz
version: 1.24.0
- apiVersion: v2
appVersion: v1.23.1
created: "2024-02-26T19:24:10.974709561Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 0c2414a3b8f12007951049f8bc95158e6116359650ea976b033d59297c142799
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.23.1.tgz
version: 1.23.1
- apiVersion: v2
appVersion: v1.23.0
created: "2024-02-02T17:31:26.845775466Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 5d31a58234c72defd12a1c7e6e82422471bda5fa0ca748dc22b0508c8be32ada
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.23.0.tgz
version: 1.23.0
- apiVersion: v2
appVersion: v1.22.0
created: "2024-01-29T14:58:20.598553172Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 77b2863a382885dcc5ec346c56556e06da7018d7b0406033b64e867efeb65fb7
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.22.0.tgz
version: 1.22.0
- apiVersion: v2
appVersion: v1.21.0
created: "2024-01-21T18:45:46.915459456Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: bbccca48be13cfb608d20a7a3be497caa2ba71a2b673ddf07258c349d8f42a83
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.21.0.tgz
version: 1.21.0
- apiVersion: v2
appVersion: v1.20.2
created: "2024-01-20T14:08:37.767089548Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a37cb743ea256c5e92ad5b63644a86e1d21a9fccdd755515be49cbc001bc3b7f
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.20.2.tgz
version: 1.20.2
- apiVersion: v2
appVersion: v1.20.1
created: "2024-01-02T17:59:01.54356803Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 76d69e917d899dd4e6a84721288c834cd2673a69752616e783109b6dec2086e5
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.20.1.tgz
version: 1.20.1
- apiVersion: v2
appVersion: v1.20.0
created: "2023-12-08T12:53:47.169734924Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 3db643e0c64ba41f80c2c57a83b7227465934c70b2db1e5fcff8283336947269
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.20.0.tgz
version: 1.20.0
- apiVersion: v2
appVersion: v1.19.0
created: "2023-11-20T14:49:45.708575018Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 6d84bc1f03b48c9252db739544d82c3c943fb4e5cca20529e6b791412acb5d26
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.19.0.tgz
version: 1.19.0
- apiVersion: v2
appVersion: v1.18.2
created: "2023-11-16T07:04:51.869699788Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 46f43ea29c4a3c5c3a2629abe3abda4efe83d40529094eb907f75ddf89f98888
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.18.2.tgz
version: 1.18.2
- apiVersion: v2
appVersion: v1.18.1
created: "2023-11-12T12:20:19.26261383Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: e50d9a0b922a8dd3a6cae6ee5e91c9f981a01bfa9c779801394b2610b1b88f2d
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.18.1.tgz
version: 1.18.1
- apiVersion: v2
appVersion: v1.18.0
created: "2023-11-03T21:44:03.378278069Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a6ed2d33d7b5c7a47bf76ce1f36343732a989a3fc281abedfe111f71e6481e8b
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.18.0.tgz
version: 1.18.0
- apiVersion: v2
appVersion: v1.17.0
created: "2023-11-03T14:23:08.250139643Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 96d0e5d8e370fad18d240070be81b0f21eba79d355d8a932013f7d44050e9c86
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.17.0.tgz
version: 1.17.0
- apiVersion: v2
appVersion: v1.16.0
created: "2023-10-20T07:21:45.181943719Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 58f139483b3f483a8d90e8f1075e7273fd2a63d1e9f0e27de6951e3ae69ab96c
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.16.0.tgz
version: 1.16.0
- apiVersion: v2
appVersion: v1.15.2
created: "2023-09-25T20:16:41.221287743Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: bb62a151b66f57dc426a8a6b1eca0f3479efaef39c2e610fc0e5f167cd1af2cc
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.15.2.tgz
version: 1.15.2
- apiVersion: v2
appVersion: v1.15.1
created: "2023-09-01T21:09:44.251953098Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 0a076c7d55e91645635663c11cefd48b2fb94aa40f77c7d93a206ea512b98fe3
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.15.1.tgz
version: 1.15.1
- apiVersion: v2
appVersion: v1.15.0
created: "2023-08-13T08:08:21.617163446Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 27a8eb7d753296b0c6737592f4d12ed8a6e28f9829c01062f21f7ca1761b36ea
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.15.0.tgz
version: 1.15.0
- apiVersion: v2
appVersion: v1.14.1
created: "2023-08-08T09:18:18.493376458Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 32b3efbf0da23cdd2788dc26a5d3dff353f67b1715fab5f63368b44d4ecfb6f4
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.14.1.tgz
version: 1.14.1
- apiVersion: v2
appVersion: v1.14.0
created: "2023-08-03T09:17:23.813391153Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: fe78404ae26aba921eb49bab5fb02457120a801c5c50aeeded573a06d3b3ba8b
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.14.0.tgz
version: 1.14.0
- apiVersion: v2
appVersion: v1.13.0
created: "2023-07-28T18:28:06.860323334Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 84bf69b7ced5c4a5e1af4e5e3b207908424c4ac3b8fc68f3da52bc439de2c343
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.13.0.tgz
version: 1.13.0
- apiVersion: v2
appVersion: v1.12.1
created: "2023-07-21T17:25:23.5322617Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: b46c92bf4af3457dd7cbd2b52e958deb8769e059c207c4f0e46dae492207e662
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.12.1.tgz
version: 1.12.1
- apiVersion: v2
appVersion: v1.12.0
created: "2023-06-27T13:00:31.891204384Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 7fec5e1df4b6121ac4c74e90f8276930a4acb6e2cc8751d96becb8e86e3c96a7
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.12.0.tgz
version: 1.12.0
- apiVersion: v2
appVersion: v1.11.0
created: "2023-06-09T15:10:45.41519195Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: e3282a52649d61fcf8d7fd39c55a029a74e876553a9250e056740175e7e7ee69
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.11.0.tgz
version: 1.11.0
- apiVersion: v2
appVersion: v1.10.4
created: "2023-05-24T21:40:26.491910387Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: 4f79e211a5e8191a50897b06119ab740f2187f32c57f2216254276ee00a922f9
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.10.4.tgz
version: 1.10.4
- apiVersion: v2
appVersion: v1.10.3
created: "2023-05-15T15:42:48.260253009Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: e688534d9d9bf0edc9f7697e29579de34ca541e474de344006bc3e1e1c9f5638
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.10.3.tgz
version: 1.10.3
- apiVersion: v2
appVersion: v1.10.2
created: "2023-05-07T20:03:48.670124379Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: d797e1629d6f37bd18b5570596696c07a30fde595a6b138b82311b2cb9b3dc20
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png
maintainers:
- email: [email protected]
name: thomaspoignant
url: https://gofeatureflag.org
name: relay-proxy
sources:
- https://github.com/thomaspoignant/go-feature-flag
type: application
urls:
- https://charts.gofeatureflag.org/relay-proxy-1.10.2.tgz
version: 1.10.2
- apiVersion: v2
appVersion: v1.10.1
created: "2023-05-01T14:17:25.643954912Z"
description: A Helm chart to deploy go-feature-flag-relay proxy into Kubernetes
digest: a3d4412f06add9341e7ee783ac8d3bcfee51e5720c53443afb803416f6c07e50
home: https://gofeatureflag.org
icon: https://raw.githubusercontent.com/thomaspoignant/go-feature-flag/main/logo.png