-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.yaml
4115 lines (4115 loc) · 150 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:
authenticated-rpc-tezos-chain:
- apiVersion: v2
created: "2023-12-10T02:15:25.492925292Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 54b2c61376956986c101335f4cbb909936334fb6f3df0e6e27e9c796882a4cc7
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.25.0.tgz
version: 6.25.0
- apiVersion: v2
created: "2023-12-05T02:45:07.521169611Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 43f180da0a13f89c9afa806e4e2ce11cf09a9ec90d811b71da62c4c8accf036b
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.6.tgz
version: 6.24.6
- apiVersion: v2
created: "2023-12-03T06:22:25.599281711Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: d31718a7b0099dee17dd061bed1dc747d4b9027f837fd036472f638794e9fb17
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.4.tgz
version: 6.24.4
- apiVersion: v2
created: "2023-11-29T06:02:17.990189469Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: de20d357b18f35a295dd6754a355028bdc685fb689e1bf52c60158ea083c2303
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.3.tgz
version: 6.24.3
- apiVersion: v2
created: "2023-11-29T04:03:32.947170664Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: af1083e89bf246da30661716bd28f7c11816e7add579e37e248227884fc76f13
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.2.tgz
version: 6.24.2
- apiVersion: v2
created: "2023-11-18T19:08:19.539226041Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: dbd1b2def29f2168ac43a0a93bfa8ad9c6f30f4af60c5fda15e1ffe113c3f0ec
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.1.tgz
version: 6.24.1
- apiVersion: v2
created: "2023-11-10T23:35:41.550718016Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: f4b0dff4671934e28a4642e1eacb69229fe240ca7878e40ed411a7b51a7fa625
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.24.0.tgz
version: 6.24.0
- apiVersion: v2
created: "2023-10-13T20:32:44.699438244Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 79606172cd239091cf77d6af4bc81b6199616f0807cd2fa82019e756129938f3
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.23.2.tgz
version: 6.23.2
- apiVersion: v2
created: "2023-10-05T23:47:19.014789875Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 430a563653dd47068e0bb91586e33f4c55ea161835f5ee6d5cd2e8c8f720ec1e
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.23.1.tgz
version: 6.23.1
- apiVersion: v2
created: "2023-10-03T17:44:11.124110165Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 1546bc3c1926d54d342e80947afefad5bde0d89c3eed5794a1172ad30f71bbab
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.23.0.tgz
version: 6.23.0
- apiVersion: v2
created: "2023-08-25T23:14:34.502274725Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: c06bf0b3cd8547215074c7e5f873c6bf2882c8b8383cb693ecf16c198f864841
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.22.0.tgz
version: 6.22.0
- apiVersion: v2
created: "2023-08-15T16:53:22.482623409Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 2afeb398aa11de5497ab2c2d3dff7bdd89ade423d98065538aa69d2250edc40d
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.21.1.tgz
version: 6.21.1
- apiVersion: v2
created: "2023-06-26T06:24:22.501733995Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: d2eb535e4ec9ffd50ff250207ba5a6da7b118ce6a64cac5410feb58f091a7c5c
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.21.0.tgz
version: 6.21.0
- apiVersion: v2
created: "2023-06-02T22:24:59.561656863Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 58e5965296090cfc02b5dd73d42487bc0350ba9d376f13dfc2406e2de549ae52
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.20.2.tgz
version: 6.20.2
- apiVersion: v2
created: "2023-05-12T16:53:51.454368915Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 77136acd05f3937da112725250e2e034af553580ce04054ae07597a54d4aa100
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.20.1.tgz
version: 6.20.1
- apiVersion: v2
created: "2023-05-04T23:53:56.286089656Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: abdb2d51ff9c32e73e0ba9a46c6482101d9cf94d1ce32deea0af869b9fba7fb5
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.20.0.tgz
version: 6.20.0
- apiVersion: v2
created: "2023-04-12T23:03:03.55234325Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 3d26470b0dd3025246e4ef1c38bca566597f32283e95f06e4e82f8038ec952c8
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.19.1.tgz
version: 6.19.1
- apiVersion: v2
created: "2023-04-05T19:11:53.132839916Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: aff932741120594aee34b8fbf1a43b6d4b5c41bb492b3f14ed5f5484c6c956fa
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.19.0.tgz
version: 6.19.0
- apiVersion: v2
created: "2023-03-28T20:36:19.53289394Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: e2bcb987a557f79b3ed2da9562678005ba19210a84350a8291b46c0b11dd10ff
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.18.1.tgz
version: 6.18.1
- apiVersion: v2
created: "2023-03-27T22:59:41.377625475Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 474d5f13d0c0d27ebc85ce83f77d5f2767a2e0c293288d2cc36a21457e839e41
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.18.0.tgz
version: 6.18.0
- apiVersion: v2
created: "2023-03-10T01:39:25.514861022Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 23bb3103e126927e9e412ab890010c4ad2c3d08df44984419bce2117ae60ac99
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.17.0.tgz
version: 6.17.0
- apiVersion: v2
created: "2023-02-24T16:24:51.379145357Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 22308fe129669eeac71d310ce4b907a13bbe99b46a32b02d6d781ad507086ee3
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.16.2.tgz
version: 6.16.2
- apiVersion: v2
created: "2023-02-24T16:24:31.300919263Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: b3106b85da69cb6be73452a71c4fd9c67e3c88c4dac6f77d8db542d767424fcc
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.16.1.tgz
version: 6.16.1
- apiVersion: v2
created: "2023-02-23T23:01:22.322200318Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: c45d37aa85f68fd4df0c58f316f360be693a2ef142728d568efb5b3bb56628c7
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.16.0.tgz
version: 6.16.0
- apiVersion: v2
created: "2023-02-22T03:32:40.971778882Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 4656a5225996363a44b9951707bcad6f7ede8b792fd663aef7ab68030f66bc2d
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.15.3.tgz
version: 6.15.3
- apiVersion: v2
created: "2023-02-20T19:22:27.697208182Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 9f425ff1687369d57336a35df7342e7b44193411406bd0dc112184ee61967016
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.15.2.tgz
version: 6.15.2
- apiVersion: v2
created: "2023-02-17T22:38:21.949621904Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 38b7ab5a8648fe2b47a5ab2aab46c14189251691ecf809fa7812cc9e6fb3f398
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.15.1.tgz
version: 6.15.1
- apiVersion: v2
created: "2023-02-17T18:38:30.610578721Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: eb7008b9888f8efaed437b5171c18e53bc7d165eb04d904d9e4604c4b0f18c34
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.15.0.tgz
version: 6.15.0
- apiVersion: v2
created: "2023-01-26T23:29:03.134058063Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 24a70c2b61ab0ed428d18a000d96404d809341f81fa5dbe3a9dda4343436036a
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.14.0.tgz
version: 6.14.0
- apiVersion: v2
created: "2022-12-23T19:23:27.600969002Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 2c47925db0d8ab6f601ca7ded5cdeb6b0ff9e2274dd13f7c1d7c0fbc7d951a4e
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.13.0.tgz
version: 6.13.0
- apiVersion: v2
created: "2022-12-17T03:29:38.094269182Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: d1688a982c8b83e5cdc1177e3f3b825cf7f885fcd14603188bfff2d6e3a987bd
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.12.3.tgz
version: 6.12.3
- apiVersion: v2
created: "2022-12-12T17:24:55.46041752Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 2bcb1515d5363ea20b30382f36be01420d60005305c3d2a14ac7cd3c666d169c
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.12.2.tgz
version: 6.12.2
- apiVersion: v2
created: "2022-12-09T21:00:17.473011194Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 4e7fe67bb6d1b1caf75e115d3d0c0780f5c8b70ec2ba6798c967d41ffba99e93
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.12.1.tgz
version: 6.12.1
- apiVersion: v2
created: "2022-12-09T20:16:03.424293355Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 6c48e2711db77cadb6cb5ae392585f191a23c86f28af72827731e641848d348f
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.12.0.tgz
version: 6.12.0
- apiVersion: v2
created: "2022-11-03T04:19:29.210591378Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 8e575996e7b49d010ed3e6c6edb55b19cf3d953646041e1a648e7af14df2f71b
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.11.1.tgz
version: 6.11.1
- apiVersion: v2
created: "2022-10-12T00:14:35.866949362Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: b645ecc4e1bc7b7544827c834fb7a2798e7b49943936a42be684b44ea5eb8d79
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.10.0.tgz
version: 6.10.0
- apiVersion: v2
created: "2022-10-05T19:35:48.895375018Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 8ac6c8c560f05b1dab789cc4098a2827e7d1f9fa5e0a5582c5564a6e3335950e
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.9.1.tgz
version: 6.9.1
- apiVersion: v2
created: "2022-09-16T20:35:53.013292361Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 4c37ce506dec352fff20d5c70e5ccc8c59177aabb446f598adcb4c404badfcdf
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.9.0.tgz
version: 6.9.0
- apiVersion: v2
created: "2022-08-26T22:31:55.95939218Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: a49f6b627017bfe27de4ec81c7ca5007df6e2cb1de9b7ddb926c5a26eb0589f8
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.8.2.tgz
version: 6.8.2
- apiVersion: v2
created: "2022-07-14T20:45:47.11075611Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: bd9273e8bc40206c8e1e5340d4e0a64658f8decf7fa075851999ed87bef5a7e8
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.8.1.tgz
version: 6.8.1
- apiVersion: v2
created: "2022-07-06T21:39:46.788110313Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 5ca80dc09eafab9e763c9c6a9819f54d012075056b61ff982d228844c48e7eb3
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.8.0.tgz
version: 6.8.0
- apiVersion: v2
created: "2022-06-14T20:56:14.75151375Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 4c0e841fbf645c8198305c1ee341983bed73ade93c94c67bd388f9bd40ff6fe3
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.7.0.tgz
version: 6.7.0
- apiVersion: v2
created: "2022-05-11T05:39:52.562537478Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 1d8dd14e8a20ffefc7cab00a05d2297d19e92bdb6590808248703322cc0a9fdb
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.6.1.tgz
version: 6.6.1
- apiVersion: v2
created: "2022-05-11T03:48:22.173757689Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: dd614f2536aae5f938269851c9d4b910a4faebfb75d17ab6aeacdfb1959c2ba1
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.6.0.tgz
version: 6.6.0
- apiVersion: v2
created: "2022-04-18T18:08:15.999659888Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 5c54ae16aa1787f92d93aaf647b687d7c3a3ee30dd444db3e2b5a3fe245f95f0
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.5.1.tgz
version: 6.5.1
- apiVersion: v2
created: "2022-04-13T21:14:29.360744178Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: bca82578784166ab619d68a3787467edf36d061bd4d6d0936bf925519abe8a68
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.5.0.tgz
version: 6.5.0
- apiVersion: v2
created: "2022-04-06T23:02:19.589619831Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: d4d30f6f5ebe106745157f80b643c4f69354d44336402e7c49f1412d184be997
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.4.0.tgz
version: 6.4.0
- apiVersion: v2
created: "2022-03-11T22:19:16.452996101Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 59dbb8b95adc428a4c8ee43bc905b40103e5849fe8008ab2fd01961e77adbc14
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.3.0.tgz
version: 6.3.0
- apiVersion: v2
created: "2022-02-10T22:05:42.792609774Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: e324f68d8e0e72ef98511de0ee629e1cde81450323ff579fe1de25b28694e78e
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.2.1.tgz
version: 6.2.1
- apiVersion: v2
created: "2022-02-09T23:01:36.976317053Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 9e90f4b750a53f0ab7ce69ae43b33e118b0a709942e6fe49083fa040ada9a1a8
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.2.0.tgz
version: 6.2.0
- apiVersion: v2
created: "2022-01-21T18:07:24.316838057Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 9e2cfde1e93a0c5bd808518e04c0b0fc8179fc7dedf29a79ebb3c0d36f2ad483
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.1.0.tgz
version: 6.1.0
- apiVersion: v2
created: "2022-01-11T02:52:00.332451627Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 21724a706d218ad58d95023fc8fb9bf3199171f06aeea715b9221fcd334d8921
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.0.1.tgz
version: 6.0.1
- apiVersion: v2
created: "2021-12-13T18:38:35.296833722Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 63399a465aa7cd13cf11a5d26f5b1cafe537883d66526ddaa375e94acf78390d
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-6.0.0.tgz
version: 6.0.0
- apiVersion: v2
created: "2021-11-29T22:44:23.600721784Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 5be1af07c7facbec540c6c0fe6cbfcd482e276165e8e0da583a6c0002e9977ca
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.3.4.tgz
version: 5.3.4
- apiVersion: v2
created: "2021-11-20T03:21:39.788778376Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 7e2e44c83d7c0b61e08328fef754370c5c306bfdc6c1d99d40de2d3648711276
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.3.3.tgz
version: 5.3.3
- apiVersion: v2
created: "2021-11-09T21:47:48.821122273Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 399adf0397cae669ceb1997c24dd7fa62509a08e4fffa6830c2cf8748ad34d85
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.3.1.tgz
version: 5.3.1
- apiVersion: v2
created: "2021-11-05T20:04:11.160814354Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 9e194785b77c3d904b95404aa6e4fbd9184825185dfccad7092fc0dececf1e07
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.3.0.tgz
version: 5.3.0
- apiVersion: v2
created: "2021-09-30T22:13:58.876567184Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: e717e96b88b4f739cb042770a4f8d1efdb21b7fd82dea4146faefc136e374d56
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.2.0.tgz
version: 5.2.0
- apiVersion: v2
created: "2021-09-15T20:53:03.275358387Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 789c43b75c92d4946d87280c89db31f7189526c35272407103670056091b5e6c
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.1.1.tgz
version: 5.1.1
- apiVersion: v2
created: "2021-08-05T21:36:12.970096996Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: c7816d70365b73299905715401b0f7edb9c10a8f253c5eaedce455c8f12fecc7
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.0.2.tgz
version: 5.0.2
- apiVersion: v2
created: "2021-08-05T19:33:42.182579085Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: ed0396563a7d46f791cc45c7c81d85b4bcea3918e7d352badd037d41eb046925
home: https://github.com/oxheadalpha/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-5.0.1.tgz
version: 5.0.1
- apiVersion: v2
created: "2021-05-14T12:26:32.072281451Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: a4a49c964773d9abb142ad96371e912d166a7881a4151e8f43ef66bb26d41468
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-4.0.0.tgz
version: 4.0.0
- apiVersion: v2
created: "2021-05-07T16:04:40.853075122Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 4e7a2ce84a0264758d8baba163177b5520c3786ff75073f6b7a5faca697f1ed5
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-3.2.0.tgz
version: 3.2.0
- apiVersion: v2
created: "2021-05-04T18:01:42.155452608Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: b70824cb7c37b69de2c104a190b32f43daf31a40e11888e39f5e01a1a96ce593
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-3.1.0.tgz
version: 3.1.0
- apiVersion: v2
created: "2021-04-07T18:04:39.705831624Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 113671028d4207f00fb4d7a055230d15c2e4500e3a6e774e1a93e36b2c1700c0
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-3.0.1.tgz
version: 3.0.1
- apiVersion: v2
created: "2021-04-07T18:04:39.705624908Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: 7d15f63b207d25126c23a8437684747d508ebb51bd658448a8eb498ec98d0ef0
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-3.0.0.tgz
version: 3.0.0
- apiVersion: v2
created: "2021-04-07T18:04:39.70539379Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: bd2f99e3c64903f0cc017800b5b6825b5d71aa3711859dc3c1f1e31ea9f5980a
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-2.0.1.tgz
version: 2.0.1
- apiVersion: v2
created: "2021-04-07T18:04:39.705118568Z"
description: A Helm chart for Tezos RPC authentication for a private chain
digest: cc6393b3656441e14f5b5e024c53a3cab78063017ab9a448f856d4a335ada2b5
home: https://github.com/tqtezos/tezos-k8s
keywords:
- tezos
- blockchain
name: authenticated-rpc-tezos-chain
type: application
urls:
- https://tqtezos.github.io/tezos-helm-charts/authenticated-rpc-tezos-chain-2.0.0.tgz
version: 2.0.0
pyrometer:
- apiVersion: v2
appVersion: 1.16.0
created: "2023-12-10T02:15:25.493320581Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 5850acb05f998e0e8a154ab079cf1053cf540bf246e8abbb72c91f32abc9ff33
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.25.0.tgz
version: 6.25.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-12-05T02:45:07.521745054Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 86bcac797194d79d9edad846ec2607a57db251c6b1b35bfbe871a12df8b1f520
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.6.tgz
version: 6.24.6
- apiVersion: v2
appVersion: 1.16.0
created: "2023-12-03T06:22:25.599643048Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 0f147db63584761d0c94f66d26c0a2e5cfc0aeb159b7018325f11e5674ddfd64
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.4.tgz
version: 6.24.4
- apiVersion: v2
appVersion: 1.16.0
created: "2023-11-29T06:02:17.990721237Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 118083a1ad74ae9b1ea27f8256299f0024b89ef8c2294d0e0a17a8f19317ad03
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.3.tgz
version: 6.24.3
- apiVersion: v2
appVersion: 1.16.0
created: "2023-11-29T04:03:32.947532834Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 43f3a6b34429b941ab9538aa785a2b5a72a332d7ecfdba9808b7261f669d2848
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.2.tgz
version: 6.24.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-11-18T19:08:19.539569503Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 0d4769de5edf0c1f3be4ec8acc55257b450de161ab6a687cce9509a9c7491c7c
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.1.tgz
version: 6.24.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-11-10T23:35:41.551151125Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 66a306f3d385a8fda9d4e1e9e1ab7f1ef630975f266c9ae888ecb018659d3178
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.24.0.tgz
version: 6.24.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-13T20:32:44.699879946Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 543a422bc1e7a38105ad06201b9d26a3ec4368cee5a4fead1f7de27e66bce15e
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.23.2.tgz
version: 6.23.2
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-05T23:47:19.015543186Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 49e01724bbb3a3b16ff308ea52a57fa230ec05339b6bd55bb9e65a1c2ed8c6cf
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.23.1.tgz
version: 6.23.1
- apiVersion: v2
appVersion: 1.16.0
created: "2023-10-03T17:44:11.124562774Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 880b47609c7ab8a31a75033f1ccb2d07f79f04ebc2ce1ab96d8785d0ab522e25
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.23.0.tgz
version: 6.23.0
- apiVersion: v2
appVersion: 1.16.0
created: "2023-08-25T23:14:34.502729437Z"
description: Deploys pyrometer Tezos monitoring solution
digest: 8b8d5c44a2a2bb197b7d2ed17821f32ec484deffc9867cab351968f267fa3f17
name: pyrometer
type: application
urls:
- https://oxheadalpha.github.io/tezos-helm-charts/pyrometer-6.22.0.tgz
version: 6.22.0
- apiVersion: v2
appVersion: 1.16.0