-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.yaml
1082 lines (1082 loc) · 34.8 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:
backup-cron:
- apiVersion: v2
appVersion: "1.2"
created: "2022-07-14T06:37:49.236775745-04:00"
description: A backup deployment based on restic. Includes cronjob.
digest: a968610bf5fd8aeae671b6b949b4f4080cfac7e288ee194f300b18f2979cd00a
home: https://github.com/mcserverhosting-net/charts
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
- backup
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: backup-cron
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/backup-cron-1.2.tgz
version: "1.2"
- apiVersion: v2
appVersion: "1"
created: "2022-07-14T06:37:49.234439021-04:00"
description: A backup deployment based on restic. Includes cronjob.
digest: d0b33efdf8773c62977012d472096cfc63f312048d601ba049e9160e718b6b5d
home: https://github.com/mcserverhosting-net/charts
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
- backup
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: backup-cron
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/backup-cron-1.1.tgz
version: "1.1"
- apiVersion: v2
appVersion: "1"
created: "2022-07-14T06:37:49.238399845-04:00"
description: A backup deployment based on restic. Includes cronjob.
digest: 07572cf95d739217ca0b0a4085c697c154da477ab3aaf51edc2a0328f18ac076
home: https://github.com/mcserverhosting-net/charts
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
- backup
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: backup-cron
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/backup-cron-1.tgz
version: "1"
bungee-deployment:
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.242716981-04:00"
description: An bungee deployment deployment for MCSH. Includes bungee deployment.
digest: 4cceb254c911fae0f56813293fc6bed7e3bcae39a446b2272ee22d58855d32bb
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- bungee
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: bungee-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/bungee-deployment-2.2.tgz
version: "2.2"
- apiVersion: v2
appVersion: "2.1"
created: "2022-07-14T06:37:49.240417701-04:00"
description: An bungee deployment deployment for MCSH. Includes bungee deployment.
digest: fc271ceb2661659e3ed8fcf94736c36edc8d7183f5b807401128d091adeecefa
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- bungee
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: bungee-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/bungee-deployment-2.1.tgz
version: "2.1"
- apiVersion: v2
appVersion: "2"
created: "2022-07-14T06:37:49.246070272-04:00"
description: An bungee deployment deployment for MCSH. Includes bungee deployment.
digest: 5a71d141bbf38b21bf715bef45df02e0a66b61500f9bc6e4704508da3aa12504
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- bungee
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: bungee-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/bungee-deployment-2.tgz
version: "2"
customer:
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.265487449-04:00"
description: A customer deployment deployment for MCSH.
digest: 3101cacd32ebf4bce85115aefb416fbafe912e3fdecb80f1cc7e16ba95116fb8
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.4.tgz
version: "1.4"
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.26166468-04:00"
description: An customer deployment deployment for MCSH.
digest: caaf6dd006100f17cb2543e9c373e79083d6dca61e4b3ebd71f12fa3f61a7f0d
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.5.tgz
version: 1.3.5
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.259693509-04:00"
description: An customer deployment deployment for MCSH.
digest: 16e797d841beaa93807bcb8b8582b01b91e4f4f1e3a272b05c41a1e90e8ade69
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.4.tgz
version: 1.3.4
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.257678745-04:00"
description: An customer deployment deployment for MCSH.
digest: d92fd0270a7ee27af624b98542ffeaa22bfa1e1af1f268be16efe8e701ede66b
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.3.tgz
version: 1.3.3
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.255762796-04:00"
description: An customer deployment deployment for MCSH.
digest: 101983d3d904f6369b8cf168beb300bec872e983715002df8b91b8038ef7c019
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.2.tgz
version: 1.3.2
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.253799088-04:00"
description: An customer deployment deployment for MCSH.
digest: 15c476d1171c191d716eddcd78d7759171d5b440ae445ff28a12fd9e31893803
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.1.tgz
version: 1.3.1
- apiVersion: v2
appVersion: "1.3"
created: "2022-07-14T06:37:49.263348594-04:00"
description: An customer deployment deployment for MCSH.
digest: 23be294ffc205895866549d59f49ae471548c2fac37e73bc37483c020a404a17
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.3.tgz
version: "1.3"
- apiVersion: v2
appVersion: "1.2"
created: "2022-07-14T06:37:49.251852268-04:00"
description: An customer deployment deployment for MCSH.
digest: 59cdb778c59273415e4429deff6492e83faa924c6de9cc8a0438cc227ce9bee5
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.2.tgz
version: "1.2"
- apiVersion: v2
appVersion: "1.1"
created: "2022-07-14T06:37:49.249096528-04:00"
description: An customer deployment deployment for MCSH.
digest: 3c8564f1fdb2d833ad0214b0859a92c690891c9f8bb1adb793ecf365c850de8c
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.1.tgz
version: "1.1"
- apiVersion: v2
appVersion: "1"
created: "2022-07-14T06:37:49.267238326-04:00"
description: An customer deployment deployment for MCSH.
digest: 44956457a6057af9eb28ef42d6c725220ca190a79378fe2445a5b38f87d1a763
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- customer
- cx
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: customer
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/customer-1.tgz
version: "1"
database-deployment:
- apiVersion: v2
appVersion: "1"
created: "2022-07-14T06:37:49.269074942-04:00"
description: An database deployment deployment for MCSH. Includes bungee deployment.
digest: 616c6f2769b24847deb3461c6f409dd3124357df575af231cf34f744ee561dbc
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- database
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: database-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/database-deployment-1.tgz
version: "1"
forge-server:
- apiVersion: v2
appVersion: 1.12.2
created: "2022-07-14T06:37:49.276285632-04:00"
description: A forge server for mods!
digest: e575b514aca648a9b94ff7f7a141499eff2fa328ca267c3b997d4113c344d948
home: https://mcserverhosting.net/
icon: https://mcserverhosting-net.github.io/charts/forge-deployment/forge-logo.svg
keywords:
- mcserverhosting
- server
- forge
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: forge-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/forge-server-1.1.4.tgz
version: 1.1.4
- apiVersion: v2
appVersion: 1.12.2
created: "2022-07-14T06:37:49.274213184-04:00"
description: A forge server for mods!
digest: 861b78d1021de50a0208084537c8bb25665f1c0aa5ed9137c8ec608c426f98a1
home: https://mcserverhosting.net/
icon: https://mcserverhosting-net.github.io/charts/forge-deployment/forge-logo.svg
keywords:
- mcserverhosting
- server
- forge
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: forge-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/forge-server-1.1.2.tgz
version: 1.1.2
- apiVersion: v2
appVersion: 1.12.2
created: "2022-07-14T06:37:49.271591073-04:00"
description: A forge server for mods!
digest: 8e7ad1786c9de0f004e6766aa88b70c32b4c0a99a07988ba77b9eb94c81b9e59
home: https://mcserverhosting.net/
icon: https://files.minecraftforge.net/maven/manage/static/images/logo.svg
keywords:
- mcserverhosting
- server
- forge
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: forge-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/forge-server-1.1.1.tgz
version: 1.1.1
- apiVersion: v2
appVersion: 1.12.2
created: "2022-07-14T06:37:49.278496783-04:00"
description: A forge server for mods!
digest: 11d5461486de44d6d25a0e7a6f32a76749f3eac7f45a1361022933bf284c1d38
home: https://mcserverhosting.net/
icon: https://files.minecraftforge.net/maven/manage/static/images/logo.svg
keywords:
- mcserverhosting
- server
- forge
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: forge-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/forge-server-1.1.tgz
version: "1.1"
- apiVersion: v2
appVersion: 1.12.2
created: "2022-07-14T06:37:49.283729283-04:00"
description: A forge server for mods!
digest: 19f1185e73828a9a82b8bcda1da95d0c97a24f7ffc03d03143ac8cb13f821cbe
home: https://mcserverhosting.net/
icon: https://files.minecraftforge.net/maven/manage/static/images/logo.svg
keywords:
- mcserverhosting
- server
- forge
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: forge-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/forge-server-1.tgz
version: "1"
namespace-lock:
- apiVersion: v2
appVersion: "3"
created: "2022-07-14T06:37:49.295640106-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 701dc1cce297784727fd2ce7168126d8a3eb08a013993fef762708aacdcea7fe
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-3.tgz
version: "3"
- apiVersion: v2
appVersion: "2.4"
created: "2022-07-14T06:37:49.291834133-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 2a6a0caf1eb8812910c32ea9919b2a69469e90f22f4be0cd665147f7546ebed0
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.4.tgz
version: "2.4"
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.288111104-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 6072b021d0d8d9cdf5a4a7cef7a97c0bd743a4bd002f847ca04f9f21f5c7b6e5
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.3.1.tgz
version: 2.3.1
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.28951589-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 0abc248e6b5c5560b2e83eee9e75d7eb6ef07dd04d7baf766ecaf36938ab14c7
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.3.tgz
version: "2.3"
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.287058278-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 47621b75c9f8253a493052d0021aec82db001d77aec0230750977a890f395606
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.2.tgz
version: "2.2"
- apiVersion: v2
appVersion: "2.1"
created: "2022-07-14T06:37:49.285937249-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 468c6ecff02067379d868e537b03eefc8f84fd779e101da8701ce35b1369a013
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.1.tgz
version: "2.1"
- apiVersion: v2
appVersion: "2"
created: "2022-07-14T06:37:49.293891415-04:00"
description: A namespace lock deployment for MCSH. Includes namespace quota and
user rolebinding for authentication.
digest: 5ae615a5f6b6371e50333eaab3a8034f00af7155225e5b60cd1579d93cf7214c
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- namespace
kubeVersion: "1.18"
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: namespace-lock
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/namespace-lock-2.tgz
version: "2"
server-deployment:
- apiVersion: v2
appVersion: 2.2.2
created: "2022-07-14T06:37:49.322232492-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: a0eb0f1278366df0e19381357fe29fcaa90361c2fe622bc18c22f5b0dc2b8401
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-3.0.3.tgz
version: 3.0.3
- apiVersion: v2
appVersion: 2.2.1
created: "2022-07-14T06:37:49.317264953-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: e030de114c7ad4b56d10988c7b7b3772ceb7753856854229b8dea12615dec9ca
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-3.0.2.tgz
version: 3.0.2
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.312056842-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: e172547988160fa3077a7dc094177f3259b47f22e7fd778beddf1bd585b5cb5e
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-3.0.1.tgz
version: 3.0.1
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.3257488-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: 2fb83625ad2566a949397b32016892aa03b6b3ba3329abd858f426019e62885d
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-3.tgz
version: "3"
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.304257415-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: 0c5de5ec4a3104f3ee8e6c18fd3b2abd04b8d21fde8affcbc9fa7ebb9b4a9c33
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-2.2.tgz
version: "2.2"
- apiVersion: v2
appVersion: "2.1"
created: "2022-07-14T06:37:49.300195685-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: 720e6126825715eb3b407c3ef984cd7aa12ebcc070816c80edc9a9d8c465af63
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-2.1.tgz
version: "2.1"
- apiVersion: v2
appVersion: "2"
created: "2022-07-14T06:37:49.308116351-04:00"
description: A server deployment deployment for MCSH. Includes statefulset.
digest: 836bb6c1a5417301e13e710afb915526ed161ce32be471957a7bcd4ee2aec4b4
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- server
kubeVersion: < 1.15.0
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: server-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/server-deployment-2.tgz
version: "2"
sftp-deployment:
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.334976698-04:00"
description: An SFTP deployment deployment for MCSH. Includes user management
for keys and uid.
digest: 6c6ae2f4fea36ffd4ce61fb2b7c8d84658391a63ec296a11c97a4c3dfa541f3f
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- sftp
- ftp
- user
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: sftp-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/sftp-deployment-2.3.1.tgz
version: 2.3.1
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.342916604-04:00"
description: An SFTP deployment deployment for MCSH. Includes user management
for keys and uid.
digest: f8ca5a7d8f8ebf9f786e72237df343a8a9bde8240e1d4c8d650dc2eeae813c7b
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- sftp
- ftp
- user
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: sftp-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/sftp-deployment-2.3.tgz
version: "2.3"
- apiVersion: v2
appVersion: "2.2"
created: "2022-07-14T06:37:49.331247076-04:00"
description: An SFTP deployment deployment for MCSH. Includes user management
for keys and uid.
digest: 285cc3e34297abfc5d88c516487dc096acd07e20c2733a95b1b8a6adfab01892
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- sftp
- ftp
- user
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: sftp-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/sftp-deployment-2.2.tgz
version: "2.2"
- apiVersion: v2
appVersion: "2.1"
created: "2022-07-14T06:37:49.328390541-04:00"
description: An SFTP deployment deployment for MCSH. Includes user management
for keys and uid.
digest: 5f82af2cd02f26e3311e996405024f9d315cb9aafe8f164ef7856c95bd983616
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- sftp
- ftp
- user
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: sftp-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/sftp-deployment-2.1.tgz
version: "2.1"
- apiVersion: v2
appVersion: "2"
created: "2022-07-14T06:37:49.346066027-04:00"
description: An SFTP deployment deployment for MCSH. Includes user management
for keys and uid.
digest: b1329a7a7dd66434b9e2c9a460faf9b3215cf308309d527351dd50c8c7271b43
home: https://mcserverhosting.net/
icon: https://avatars0.githubusercontent.com/u/49386422
keywords:
- mcserverhosting
- sftp
- ftp
- user
kubeVersion: < 1.15.0
maintainers:
- email: [email protected]
name: sfxworks
url: sfxworks.net
name: sftp-deployment
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/sftp-deployment-2.tgz
version: "2"
vanilla-server:
- apiVersion: v2
appVersion: 1.16.3
created: "2022-07-14T06:37:49.374240883-04:00"
description: A minecraft server - sweet vanilla!
digest: ccb68c5f2c1db5fa03d68302cb137b381ecc59c9b03b76f6f3f700b4479d1fab
home: https://mcserverhosting.net/
icon: https://mcserverhosting-net.github.io/charts/vanilla-deployment/vanilla-logo.svg
keywords:
- mcserverhosting
- server
- vanilla
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: MC Server Hosting LLC
url: mcserverhosting.net
name: vanilla-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/vanilla-server-1.2.3.tgz
version: 1.2.3
- apiVersion: v2
appVersion: 1.16.3
created: "2022-07-14T06:37:49.367269525-04:00"
description: A minecraft server - sweet vanilla!
digest: 86a013c857d4abd12bc3ed4a2b9958bf9ec49d5fb9ba5f2a24ee1054d5778946
home: https://mcserverhosting.net/
icon: https://mcserverhosting-net.github.io/charts/vanilla-deployment/vanilla-logo.svg
keywords:
- mcserverhosting
- server
- vanilla
kubeVersion: '> 1.15.0'
maintainers:
- email: [email protected]
name: MC Server Hosting LLC
url: mcserverhosting.net
name: vanilla-server
sources:
- https://github.com/mcserverhosting-net/charts
type: application
urls:
- https://mcserverhosting-net.github.io/charts/releases/vanilla-server-1.2.2.tgz
version: 1.2.2
- apiVersion: v2
appVersion: 1.16.3
created: "2022-07-14T06:37:49.360275611-04:00"
description: A minecraft server - sweet vanilla!
digest: 8de42af029ea7260a72f072eb6969a5c86c7e27cd8d7049656db4c44a1a604f1
home: https://mcserverhosting.net/
icon: https://mcserverhosting-net.github.io/charts/vanilla-deployment/vanilla-logo.svg
keywords:
- mcserverhosting
- server
- vanilla