-
Notifications
You must be signed in to change notification settings - Fork 69
/
index.yaml
1870 lines (1870 loc) · 60.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:
kube-starrocks:
- apiVersion: v2
appVersion: 3.3-latest
created: "2024-11-20T00:06:45.669506+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.9
- name: starrocks
repository: file://charts/starrocks
version: 1.9.9
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 257f654a040784e7cfbff97382418736cf4bb6f957df3e06e6c5bc2629eb2b7f
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.9/kube-starrocks-1.9.9.tgz
version: 1.9.9
- apiVersion: v2
appVersion: 3.3-latest
created: "2024-08-29T16:29:12.754611+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.8
- name: starrocks
repository: file://charts/starrocks
version: 1.9.8
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 9b767cc5a30208f7512bc1c56556168535528cc5a532991a540a447ad02b55c0
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.8/kube-starrocks-1.9.8.tgz
version: 1.9.8
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-06-26T16:56:34.430338+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.7
- name: starrocks
repository: file://charts/starrocks
version: 1.9.7
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 8dfe1841b1d788d69d8ce6fc63896ccc63506be0ca38017e9629bd0a8947449f
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.7/kube-starrocks-1.9.7.tgz
version: 1.9.7
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-05-09T14:53:18.143934+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.6
- name: starrocks
repository: file://charts/starrocks
version: 1.9.6
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 0bd2b63b7c07b504c68bd912274fbc767b9c3476345ab4c3fbc6af83444ad93a
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.6/kube-starrocks-1.9.6.tgz
version: 1.9.6
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-04-12T14:43:02.644054+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.5
- name: starrocks
repository: file://charts/starrocks
version: 1.9.5
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 449b40da6834b54544f00966bce9e63d7c0934951b17cd9ce03b33557203c114
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/kube-starrocks-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-03-25T11:43:08.284798+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 84e98ac5a2b21bfc18da08004c2588239c8857c28f0ecdf23ae9571b56cba2a7
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.4/kube-starrocks-1.9.4.tgz
version: 1.9.4
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-03-05T10:39:15.238071+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 954cc0adddd4798b8f79d5b8a593268b2a12f5e8ae110bd04e730362a92bd697
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.3/kube-starrocks-1.9.3.tgz
version: 1.9.3
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-02-04T19:56:45.368703+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 4af99218066688ac0f5a5c3418f86c6169bb2cabfec59893b36a29ba1de4fa16
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.2/kube-starrocks-1.9.2.tgz
version: 1.9.2
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-01-19T10:27:43.673358+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 299aef33da4e804b75727b12a52f4baaf03b5c660e59457c0ef8ca8e1a9ed499
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.1/kube-starrocks-1.9.1.tgz
version: 1.9.1
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-01-19T10:27:43.671421+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 0c8bf6b5d2872b766275b958ba953174ca5c9cd1f07352ab285e8b84b7c3e939
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.0/kube-starrocks-1.9.0.tgz
version: 1.9.0
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-12-19T14:04:37.124666+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: d128668f16ae3a6202fee0619e6c03ca631a38e3bb50b784d6d5b1c143ac8657
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.8/kube-starrocks-1.8.8.tgz
version: 1.8.8
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-11-20T19:35:23.793957+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 878493f0041c1234995b6e446726f6b858f29f88aec7095d204c79dfe4b65198
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.7/kube-starrocks-1.8.7.tgz
version: 1.8.7
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-11-08T10:21:32.068413+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 4cd76452a4863ce58a496b0e33173ad5faa3a1f66d3244556fcc95be54e88835
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.6/kube-starrocks-1.8.6.tgz
version: 1.8.6
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-10-30T12:44:45.376324+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 093e3ace256d84a5b4cf9d0f7cad2657662c85aa19e679dfafb758d48f1418ff
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.5/kube-starrocks-1.8.5.tgz
version: 1.8.5
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-10-17T17:09:26.857506+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: fe5131249422bacb463016d5db542612c03b151b69d6f01c3b0ad44917cfcf63
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.4/kube-starrocks-1.8.4.tgz
version: 1.8.4
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-09-18T11:40:10.914225+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: e624892c131571c18772b5ea1273a42608fb5004ead982b35c4cfdcc54b73100
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.3/kube-starrocks-1.8.3.tgz
version: 1.8.3
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-09-07T11:04:45.002009+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 2e9e5ba7dbd01287de817fdb7500512ba014ef703911916ab85125347d204336
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.2/kube-starrocks-1.8.2.tgz
version: 1.8.2
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-09-01T16:11:28.776658+08:00"
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 616e40522dbdaa6de7f10bb91b406aa410dde2c0a8752afcf74c95928cd7dde0
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.1/kube-starrocks-1.8.1.tgz
version: 1.8.1
- apiVersion: v2
appVersion: 3.1-latest
created: "2023-08-14T16:35:32.09974+08:00"
description: kube-starrocks includes two subcharts, starrocks-operator and starrocks
digest: ef5c86a78ad1e8c222f3fdd7973b96fe1bedc90b75087ea3711be3a4b3efae2b
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.0/kube-starrocks-1.8.0.tgz
version: 1.8.0
- apiVersion: v2
appVersion: 3.0-latest
created: "2023-07-24T18:09:39.621556+08:00"
description: kube-starrocks collects Kubernetes manifests, starrocks combined
with documentation and scripts to provide easy to operate end-to-end Kubernetes
cluster deploy starrocks using the starrocks operator.
digest: 315e2ca18a9ebe0d6f274ada545f5e65a15db1973c8f5ad7c4cc1183f090d288
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.7.1/kube-starrocks-1.7.1.tgz
version: 1.7.1
operator:
- apiVersion: v2
appVersion: 1.9.9
created: "2024-11-20T00:06:47.992017+08:00"
description: A Helm chart for StarRocks operator
digest: 5b1f6b5844b9a889bb7849ff31a462c7c599577652ff476c227de6006e36a9ee
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.9/operator-1.9.9.tgz
version: 1.9.9
- apiVersion: v2
appVersion: 1.9.8
created: "2024-08-29T16:29:14.889342+08:00"
description: A Helm chart for StarRocks operator
digest: aeeaf5689a078aef1a5e763019d4817c12590b326f3b902f03b7e9d8876ce670
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.8/operator-1.9.8.tgz
version: 1.9.8
- apiVersion: v2
appVersion: 1.9.7
created: "2024-06-26T16:56:36.60748+08:00"
description: A Helm chart for StarRocks operator
digest: c721e7ed8755e1cb1c582f303b9c038262a9fdb9f7f571942f2d5de43024b73b
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.7/operator-1.9.7.tgz
version: 1.9.7
- apiVersion: v2
appVersion: 1.9.6
created: "2024-05-09T14:53:20.362296+08:00"
description: A Helm chart for StarRocks operator
digest: 8ab5056f43c096947ff5f3d6cda41429d3845559e3e72e4b29c84ffadb0d24fe
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.6/operator-1.9.6.tgz
version: 1.9.6
- apiVersion: v2
appVersion: 1.9.5
created: "2024-04-12T14:43:05.141454+08:00"
description: A Helm chart for StarRocks operator
digest: fcc1e0877e7f66c29d539315deb05a3ac9fba05d39f3d72116ffc24a65e33068
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/operator-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 1.9.4
created: "2024-03-25T11:43:10.552202+08:00"
description: A Helm chart for StarRocks operator
digest: 1122d9d819ad520f726a2b0e05343430c7a47961db70ab62742fa6acb26aaa48
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.4/operator-1.9.4.tgz
version: 1.9.4
- apiVersion: v2
appVersion: 1.9.3
created: "2024-03-05T10:39:17.670481+08:00"
description: A Helm chart for StarRocks operator
digest: 5e3501d81114350ed9f7962f1b1de3f90bfce45df1192b85b5dd490a0dd65370
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.3/operator-1.9.3.tgz
version: 1.9.3
- apiVersion: v2
appVersion: 1.9.2
created: "2024-02-04T19:56:47.632264+08:00"
description: A Helm chart for StarRocks operator
digest: e05bc91b7693954b86984233c509e46f90f51e7353f092ea0caba08bfa86a9c7
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.2/operator-1.9.2.tgz
version: 1.9.2
- apiVersion: v2
appVersion: 1.9.1
created: "2024-01-19T10:27:45.821894+08:00"
description: A Helm chart for StarRocks operator
digest: ffcb50fe4eeab4d1811fadef37e1cbb2ef7e10d16e214a540317c37ef27182d9
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.1/operator-1.9.1.tgz
version: 1.9.1
- apiVersion: v2
appVersion: 1.9.0
created: "2024-01-04T17:29:10.339435+08:00"
description: A Helm chart for StarRocks operator
digest: 615c0eaa5fcf4ec7e0491a771b64dc9e4dd4e0b599b5ca5cb567d12800217e9b
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.0/operator-1.9.0.tgz
version: 1.9.0
- apiVersion: v2
appVersion: 1.8.8
created: "2023-12-19T14:04:39.39445+08:00"
description: A Helm chart for StarRocks operator
digest: 5b0d57f73a63f3ba07d74579783a925934cf90e79d4758297cc0ff454b6c5d28
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.8/operator-1.8.8.tgz
version: 1.8.8
- apiVersion: v2
appVersion: 1.8.7
created: "2023-11-20T19:35:26.003284+08:00"
description: A Helm chart for StarRocks operator
digest: 61e5936fd6628f35313cad5e8357c87f6919fefe5e6ee00d5cbba51c5b822825
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.7/operator-1.8.7.tgz
version: 1.8.7
- apiVersion: v2
appVersion: 1.8.6
created: "2023-11-08T10:21:34.1334+08:00"
description: A Helm chart for StarRocks operator
digest: 550f6eba9589d923193430c6fffb66e8cb88f239daf7e515b09ad669522abad4
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.6/operator-1.8.6.tgz
version: 1.8.6
- apiVersion: v2
appVersion: 1.8.5
created: "2023-10-30T12:44:47.78851+08:00"
description: A Helm chart for StarRocks operator
digest: c4c268dbf25560c5507ef961dc2e7065ba2516f60706865b2487279ae27401a9
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.5/operator-1.8.5.tgz
version: 1.8.5
- apiVersion: v2
appVersion: 1.8.4
created: "2023-10-17T17:09:29.259283+08:00"
description: A Helm chart for StarRocks operator
digest: 612f7f4d591a59785f4e3fdf555f3c292fda943961129708583e2b8ec69ddde2
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.4/operator-1.8.4.tgz
version: 1.8.4
- apiVersion: v2
appVersion: 1.8.3
created: "2023-09-18T11:40:13.338092+08:00"
description: A Helm chart for StarRocks operator
digest: 7cb56b04f663f3ae88919c1ba37a55300d480d5873953c4ba301b57d315a5c61
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers: