-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.yaml
3717 lines (3717 loc) · 125 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:
calico-cni:
- apiVersion: v2
appVersion: v3.28.1
created: "2024-10-23T13:31:07.276008851Z"
description: 'This Helm chart has been created based on the reference minimalistic
Calico deployment. We do not use the Helm Chart Calico Operator provided by
Tigera. This chart is based on a lightweigth Calico''s configuration manifest
and it should work in most of the cases. This chart is maintained by [Clastix
Labs](https://github.com/clastix). '
digest: f22255f8bdaa8c7ba9b1570e301883c031626d431d50e41abbf1a2c89e9697be
home: https://github.com/clastix/calico-cni-minimal
maintainers:
- email: [email protected]
name: Clastix Labs
name: calico-cni
sources:
- https://github.com/clastix/calico-cni-minimal
type: application
urls:
- https://clastix.github.io/charts/calico-cni-3.28.1.tgz
version: 3.28.1
capsule:
- apiVersion: v2
appVersion: 0.3.3
created: "2023-08-19T06:50:15.699904061Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: c172a2f243aa3a7df12b7e52f7334d8944aac23afbc233805fd95a7b793a12a0
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.6.tgz
version: 0.4.6
- apiVersion: v2
appVersion: 0.3.3
created: "2023-06-27T17:22:50.397290458Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: bcf7198fdcd8f08069ab20347ff6cc790156679e90f45864a0fa0e3f8de2d251
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.5.tgz
version: 0.4.5
- apiVersion: v2
appVersion: 0.3.2
created: "2023-06-27T13:05:45.651242648Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 79e9bd478711f7782100f7697a634a6c1b28c8e2d213f49dd322de585981caaa
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.4.tgz
version: 0.4.4
- apiVersion: v2
appVersion: 0.3.2
created: "2023-06-01T16:17:21.543569797Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 515cd06fc570ae8bf44626f3a1c03af2cdde7bdfbf26192a8215f0f4a8472545
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.3.tgz
version: 0.4.3
- apiVersion: v2
appVersion: 0.3.1
created: "2023-04-18T15:04:51.839860721Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 3e8638c0a1310d3b902dac533aa54150a28e40137af1200fcdfdf2a0b3af068e
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.2.tgz
version: 0.4.2
- apiVersion: v2
appVersion: 0.3.1
created: "2023-03-28T11:10:43.5614867Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: f979c88dc2752a5b624604671a24c6cd4257ec537722b93e0cd2ddac4b8fcca0
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.1.tgz
version: 0.4.1
- apiVersion: v2
appVersion: 0.3.0
created: "2023-03-04T17:23:30.008217105Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 335ca83a00de357bca4ef5a51dd3625cc161e5379e8c5319114f70f818110968
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.4.0.tgz
version: 0.4.0
- apiVersion: v2
appVersion: 0.2.2
created: "2023-03-02T10:01:21.786193545Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: a33a4272e400d2f9673d53935fbfe1dd8b630f953e49b0d9b4f077b8e534b99f
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.6.tgz
version: 0.3.6
- apiVersion: v2
appVersion: 0.2.1
created: "2023-02-16T10:09:16.10602458Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 7e5968f4b969b9929de6fc59553c70f4a8e5e2427ecfe8e725d79d0edaa17266
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.5.tgz
version: 0.3.5
- apiVersion: v2
appVersion: 0.2.1
created: "2023-02-14T17:42:55.560460789Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 9f6dc02f2a4c7f175a3e67569cd61c396cbbf0f8255908e273462161693ff692
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.4.tgz
version: 0.3.4
- apiVersion: v2
appVersion: 0.2.1
created: "2023-02-10T12:08:43.70484606Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 50e66afc775ecc10cc41224f72239213cadca737a0532496a7a43f0fad63e26f
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.3.tgz
version: 0.3.3
- apiVersion: v2
appVersion: 0.2.1
created: "2023-02-07T14:32:27.728520178Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: d4529beb111d92db278960b6d11592e902626667162dcb9b5e657912da40fdc7
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.2.tgz
version: 0.3.2
- apiVersion: v2
appVersion: 0.2.1
created: "2023-02-01T08:22:40.687970513Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: d9572b7c69598b4c3b7f21127d7d49caf861ed86d556de29e9337e2a8ea1d0df
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.1.tgz
version: 0.3.1
- apiVersion: v2
appVersion: 0.2.0
created: "2023-01-28T11:08:32.578939024Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 3ac2cdeacd2537fd0b550bccc6b4e935a1e1933aaa6479e648e4e2306c4906a7
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.3.0.tgz
version: 0.3.0
- apiVersion: v2
appVersion: 0.1.3
created: "2023-01-28T11:08:51.645065694Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 75f101901cc19eb394c0abdf493a7fe27a238c3fae999a24f8d43a824c51eba5
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.2.0.tgz
version: 0.2.0
- apiVersion: v2
appVersion: 0.1.3
created: "2022-12-02T14:51:33.62575315Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 5f294977645d3c1c0c0fa1331909ca3a21d9d2209681270b98be1efc70f7e543
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.12.tgz
version: 0.1.12
- apiVersion: v2
appVersion: 0.1.2
created: "2022-07-26T18:42:32.35771485Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: b98a4caa925998be97483620da7c1cf39034900bd27e0c6769f88d9a21430c6b
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.11.tgz
version: 0.1.11
- apiVersion: v2
appVersion: 0.1.1
created: "2022-07-18T07:28:17.396089492Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: abe8a9e1d790c7947676c893729eca9057366323ac64190fa36cbea4c8f1b763
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.10.tgz
version: 0.1.10
- apiVersion: v2
appVersion: 0.1.1
created: "2022-04-07T08:22:54.487881067Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: fa83c7e0591e5b6d84e270c162f0c17935d505deee2a478d86efafdb56ac532e
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.8.tgz
version: 0.1.8
- apiVersion: v2
appVersion: 0.1.1
created: "2022-03-31T07:31:25.587135878Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 222eeba483d9641ec1aa054a38cbe650135fc9f970e4e420bc4c25e239af0281
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.7.tgz
version: 0.1.7
- apiVersion: v2
appVersion: 0.1.1
created: "2022-03-31T07:30:23.352667866Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: ba03cb49e77d27f72cbe7c49c95a20c25db13fc24db329569aa82f5c897be336
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.6.tgz
version: 0.1.6
- apiVersion: v2
appVersion: 0.1.1
created: "2022-01-11T08:58:17.666066758Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 67fdeab415478174bdf27b372f9d46c4a97b5e588f3bd2c794485c79b12ea358
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.5.tgz
version: 0.1.5
- apiVersion: v2
appVersion: 0.1.0
created: "2021-12-21T06:44:29.854180454Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 991ab0c1098df1dedc8415b1e8fe8a2ffd1411fe2aa9186aaa8241a635f7e485
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.4.tgz
version: 0.1.4
- apiVersion: v2
appVersion: 0.1.0
created: "2021-10-24T15:06:04.060492667Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: a9b0c65439cbabffc732fc855c6fcd0a6a58506db0dcc570eb5c12e70c9676d2
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.3.tgz
version: 0.1.3
- apiVersion: v2
appVersion: 0.1.0
created: "2021-09-29T08:00:19.707841302Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: b2fd338e94f866255f7e7695e44b602c3d33d9e8db4b97099f1b0887708d76f0
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.2.tgz
version: 0.1.2
- apiVersion: v2
appVersion: 0.1.0
created: "2021-09-23T15:58:48.078971731Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 560859892027a9649139f2757e7f86fa45c6557c90a13262e5d3c4fdaf423782
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.1.tgz
version: 0.1.1
- apiVersion: v2
appVersion: 0.1.0
created: "2021-08-23T18:51:37.50869703+02:00"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: ffaf04cb1dde934d780603c8aa864610f66261ea59c088348c397f814341714d
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.1.0.tgz
version: 0.1.0
- apiVersion: v2
appVersion: 0.0.5
created: "2021-05-05T09:48:53.42002332Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 146b4e37177bac0e3a9785e63da2c36165a4a23c8f310a349cbc1678b63882af
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.19.tgz
version: 0.0.19
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.353187439Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: c021ca8f9023259427e3470e38eb4403de51c4a96a050a32cb30e91809edb16e
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.18.tgz
version: 0.0.18
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.352181722Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: ce4222e61ce0c4708e643055f95e8a15760aa1420884c7ffb3eb08662c0eaba1
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.17.tgz
version: 0.0.17
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.351178206Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: b3604194dfac3844455aa4e6637f980d2826c032793d62c96cee4d94092454e0
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.16.tgz
version: 0.0.16
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.349940786Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 6d5f79535f2ce36fa71a78c0e11f55d96f850db5dc205a81460bcd41106c1481
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.13.tgz
version: 0.0.13
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.347424845Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 3aed9ea88f25564966a4e9ce7c0f38ff8d7799f26d7440abc5422ca2a9484361
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.12.tgz
version: 0.0.12
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.346488529Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: c7a5ed7dfd3526e8c5847920405c22c6e6aa5537b6c6cfd7540d5838594bc1ce
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.11.tgz
version: 0.0.11
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.345565214Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 544fb4a45b70de071678c07ced8025fc87cf09d80b7e273d2cebfe8af4a1a398
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.10.tgz
version: 0.0.10
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.357788914Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: bd7cae969bbb21f9eba49b17930117b06eb82f2a5f35c576977b43ba5f142879
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/raw/master/assets/logo/capsule_small.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.9.tgz
version: 0.0.9
- apiVersion: v2
appVersion: 0.0.4
created: "2021-04-09T07:34:23.356892599Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: beca0ba029384850b0d8b40eeddbe749a9c36cefe043c81bde5d0a97a1fa338d
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/blob/master/assets/logo/space-capsule3.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy
- multitenant
- namespace
maintainers:
- email: [email protected]
name: Clastix Labs Team
name: capsule
sources:
- https://github.com/clastix/capsule
type: application
urls:
- https://clastix.github.io/charts/capsule-0.0.8.tgz
version: 0.0.8
- apiVersion: v2
appVersion: 0.0.3
created: "2021-04-09T07:34:23.355953484Z"
description: A Helm chart to deploy the Capsule Operator for easily implementing,
managing, and maintaining mutitenancy and access control in Kubernetes.
digest: 58255e044bf0842584ee3231fc08095862da179a0477b3e88095133f04e3fb45
home: https://github.com/clastix/capsule
icon: https://github.com/clastix/capsule/blob/master/assets/logo/space-capsule3.png
keywords:
- kubernetes
- operator
- multi-tenancy
- multi-tenant
- multitenancy