-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.yaml
More file actions
10712 lines (10712 loc) · 413 KB
/
Copy pathindex.yaml
File metadata and controls
10712 lines (10712 loc) · 413 KB
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:
skypilot:
- apiVersion: v2
appVersion: 0.13.1rc1
created: "2026-09-02T11:35:13.2691559Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: e328bd923e866f69956e79ea275fb0793983a2687b8f3ea8f4ad865dc80daf3e
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.13.1-rc.1.tgz
version: 0.13.1-rc.1
- apiVersion: v2
appVersion: 0.13.0
created: "2026-09-02T11:35:13.25118868Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 71f83d438c13e1ee3416c0f0d09ca8a620d11312be573112154cfcf444ba4462
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.13.0.tgz
version: 0.13.0
- apiVersion: v2
appVersion: 0.13.0rc1
created: "2026-09-02T11:35:13.231878025Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: e17ac9b4b51a18a04993094ee1048d5109fa10eac2e6bb11dbab6199d2c029ee
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.13.0-rc.1.tgz
version: 0.13.0-rc.1
- apiVersion: v2
appVersion: 0.12.3.post1
created: "2026-09-02T11:35:13.180507471Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 040d2b1291520ea0f9e1839034eac289fbd7d5899e4eda0f0a7ea15220e50cae
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.3+post.1.tgz
version: 0.12.3+post.1
- apiVersion: v2
appVersion: 0.12.3
created: "2026-09-02T11:35:13.214856738Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: fe904dc2ebf4f54aef44f8fe52209d43442a79009815d94f722205cbd235595e
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.3.tgz
version: 0.12.3
- apiVersion: v2
appVersion: 0.12.3rc1
created: "2026-09-02T11:35:13.197511496Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: e5773a533f4b0b941bf13eaaf28061f9faf50b08e27f273fc6dccef4fd4d0387
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.3-rc.1.tgz
version: 0.12.3-rc.1
- apiVersion: v2
appVersion: 0.12.2
created: "2026-09-02T11:35:13.164072026Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 8f01ac800312c943e9fe9d713f88313b5cc316ec00e61f6919baebd3a3e6fc84
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.2.tgz
version: 0.12.2
- apiVersion: v2
appVersion: 0.12.2.post1
created: "2026-09-02T11:35:13.130397502Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 88da0001efdad756c097f5ff77b94be0632d2d33d0791a7a0044ee05b443e812
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.2+post.1.tgz
version: 0.12.2+post.1
- apiVersion: v2
appVersion: 0.12.2rc1
created: "2026-09-02T11:35:13.146738497Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 43d511db716d4fc35ef119e2f76c0712dac48cf3a4a583b504f2367464b0b00c
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.2-rc.1.tgz
version: 0.12.2-rc.1
- apiVersion: v2
appVersion: 0.12.1
created: "2026-09-02T11:35:13.11267889Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 7599c22adba5b61cb50fc60a070d00d31ca47b5606de15dc6b15e39fec32d9f8
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.1.tgz
version: 0.12.1
- apiVersion: v2
appVersion: 0.12.1rc1
created: "2026-09-02T11:35:13.095627119Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: dff264669dd3583dd89d4f850d77d7bb0db73a9d0560987e5e7e2729e5937e41
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.1-rc.1.tgz
version: 0.12.1-rc.1
- apiVersion: v2
appVersion: 0.12.0
created: "2026-09-02T11:35:13.078776848Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: eab4bb3d622b80e471bfa7f64f393650295820239d2cd750841bb89662ff464b
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.0.tgz
version: 0.12.0
- apiVersion: v2
appVersion: 0.12.0rc2
created: "2026-09-02T11:35:13.062627498Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 5331ef24bfefdd825edd4d629651052d4d5e7fc46d641c44aa6db48f62a81ef9
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.0-rc.2.tgz
version: 0.12.0-rc.2
- apiVersion: v2
appVersion: 0.12.0rc1
created: "2026-09-02T11:35:13.044362918Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 335ec3d4a3e4a4045b0dbaba38e076a9ec4618b5d8e35c95e213bc00b63dfdf6
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.12.0-rc.1.tgz
version: 0.12.0-rc.1
- apiVersion: v2
appVersion: 0.11.2
created: "2026-09-02T11:35:13.027223904Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 18353cb7524656763aacd1334fe13cb28d8127949d662d71b76a19672b9bfbc0
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.2.tgz
version: 0.11.2
- apiVersion: v2
appVersion: 0.11.2rc4
created: "2026-09-02T11:35:13.011120187Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 46c33b7c16d12721ed27a8a2cbd315878039eb88a5bda4129aeaa95af6074afb
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.2-rc.4.tgz
version: 0.11.2-rc.4
- apiVersion: v2
appVersion: 0.11.2rc3
created: "2026-09-02T11:35:12.993750971Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 41d5ded5affe280e6cfd7f12204de65a90440b989e4352f35635b93cd875d442
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.2-rc.3.tgz
version: 0.11.2-rc.3
- apiVersion: v2
appVersion: 0.11.2rc2
created: "2026-09-02T11:35:12.971454908Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 548fae5f1f15eb9b565338a213236f33f8977a9a598ca86e80c12d202c4d440c
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.2-rc.2.tgz
version: 0.11.2-rc.2
- apiVersion: v2
appVersion: 0.11.2rc1
created: "2026-09-02T11:35:12.953620208Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 89b283803a4fc6ac184375bb5f63beb73023f83739543fe77038e8a5b664da8e
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.2-rc.1.tgz
version: 0.11.2-rc.1
- apiVersion: v2
appVersion: 0.11.1
created: "2026-09-02T11:35:12.936363045Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 17a16199223e533a50bcfded5a97bbc1244c784a0435229f4b669d421ffa2624
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.1.tgz
version: 0.11.1
- apiVersion: v2
appVersion: 0.11.0
created: "2026-09-02T11:35:12.919437228Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 9a923385019aaeb15f3bbdaf5775092766be41bb2d019a1e418cdb09b1ccd656
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.0.tgz
version: 0.11.0
- apiVersion: v2
appVersion: 0.11.0rc2
created: "2026-09-02T11:35:12.902514864Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: e27b180ee05a66b595c4539fd8fcb6b249b39ec579066aa8efe793ae01f937c0
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.0-rc.2.tgz
version: 0.11.0-rc.2
- apiVersion: v2
appVersion: 0.11.0rc1
created: "2026-09-02T11:35:12.885562919Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 80a7ce8a4b462ebede458e8acd88e516d884ae58eefb58863fe36a136b504d3e
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.11.0-rc.1.tgz
version: 0.11.0-rc.1
- apiVersion: v2
appVersion: 0.10.5
created: "2026-09-02T11:35:12.869363543Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: f8c2dfa531aee2e90d97b7a21702f62bdde385d4a9d3ce5d994613b023941372
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.10.5.tgz
version: 0.10.5
- apiVersion: v2
appVersion: 0.10.3
created: "2026-09-02T11:35:12.852978788Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 925bd91f6d299e26719a9bbadfe40bbceaa76434837a0bbf606701318297cda4
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.10.3.tgz
version: 0.10.3
- apiVersion: v2
appVersion: 0.10.2
created: "2026-09-02T11:35:12.835929628Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 15ce246815c98f21a09576b1bc2d4a63fc16720f362f641ed9f57ffa6cedd06c
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.10.2.tgz
version: 0.10.2
- apiVersion: v2
appVersion: 0.10.1
created: "2026-09-02T11:35:12.818571565Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 38a396e41a69edc8af76db6a2eab0cf98e60b0904127924ba7b029e40c5ece22
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.10.1.tgz
version: 0.10.1
- apiVersion: v2
appVersion: 0.10.0
created: "2026-09-02T11:35:12.803085822Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.3
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 50f66d6bed52052eb1cf344488ccfbd6d7e3f1b420ea0f4cc72ca3429d90ef86
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.10.0.tgz
version: 0.10.0
- apiVersion: v2
appVersion: 0.9.3
created: "2026-09-02T11:35:13.274698383Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.3
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: e6caef17847362f1a372f78cd06eb1a060ed50ef3d85132e84230d91dbfa4b0d
name: skypilot
type: application
urls:
- https://helm.skypilot.co/skypilot-0.9.3.tgz
version: 0.9.3
skypilot-nightly:
- apiVersion: v2
appVersion: 1.0.0.dev20260902
created: "2026-09-02T11:35:18.292059044Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: f5da3fe8cdd00c8699a08411b28d2b07cbc25d68fc4b5893f0f1b286d83727a5
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260902.tgz
version: 1.0.0-dev.20260902
- apiVersion: v2
appVersion: 1.0.0.dev20260901
created: "2026-09-02T11:35:18.275147683Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: b5c0fa004f6bdfde17172508d845d236d9391749f94d2a99dd20364a78ea6dd7
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260901.tgz
version: 1.0.0-dev.20260901
- apiVersion: v2
appVersion: 1.0.0.dev20260831
created: "2026-09-02T11:35:18.256694174Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: ab5285ba7aa621c4e082722ccd788de58c129674f805fefc1e63e9f791f2b751
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260831.tgz
version: 1.0.0-dev.20260831
- apiVersion: v2
appVersion: 1.0.0.dev20260830
created: "2026-09-02T11:35:18.238484637Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 5436b5831050ed4a42e85632833fc62013cb0e260cd3d232a6c698dd19fe6a30
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260830.tgz
version: 1.0.0-dev.20260830
- apiVersion: v2
appVersion: 1.0.0.dev20260829
created: "2026-09-02T11:35:18.220073142Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 4eed9472a0b3e7cca3e8f451e0ebdd807fde0ca3c36dbd678f75f0b78a40b8a3
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260829.tgz
version: 1.0.0-dev.20260829
- apiVersion: v2
appVersion: 1.0.0.dev20260828
created: "2026-09-02T11:35:18.202374852Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 6aea1b14c49a34b8137de82c8d5cf6f9a24aa9bbb7111a8c0cdf86e06c77068f
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260828.tgz
version: 1.0.0-dev.20260828
- apiVersion: v2
appVersion: 1.0.0.dev20260827
created: "2026-09-02T11:35:18.183975047Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: af604156802bb698cfadd60d99cd353df1596d9332a041c3ea2519f8407eb150
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260827.tgz
version: 1.0.0-dev.20260827
- apiVersion: v2
appVersion: 1.0.0.dev20260826
created: "2026-09-02T11:35:18.165734847Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 411511135d83d7b94049e7b6b8524e6ecc0f856fa6c6c2b50336c27536792a48
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260826.tgz
version: 1.0.0-dev.20260826
- apiVersion: v2
appVersion: 1.0.0.dev20260825
created: "2026-09-02T11:35:18.147710307Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: a8a23a51fec0b82a45978350ee44713a204ecf55dfe6d22783200565c4c71e07
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260825.tgz
version: 1.0.0-dev.20260825
- apiVersion: v2
appVersion: 1.0.0.dev20260824
created: "2026-09-02T11:35:18.131006453Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 68ce50bd2a3fb40ec31d2d47f41d6930e8b775daedc57b11d0681381dd29129f
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260824.tgz
version: 1.0.0-dev.20260824
- apiVersion: v2
appVersion: 1.0.0.dev20260823
created: "2026-09-02T11:35:18.112549329Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 17df2ce095eb94815d2573f750676223e6499de356aa6cb39b7810053d93e337
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260823.tgz
version: 1.0.0-dev.20260823
- apiVersion: v2
appVersion: 1.0.0.dev20260822
created: "2026-09-02T11:35:18.094381233Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 885403f29bc19b6a3acb199391348c7fa1089c6fecdb0b1831d4ebfe0b63c078
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls:
- https://helm.skypilot.co/skypilot-nightly-1.0.0-dev.20260822.tgz
version: 1.0.0-dev.20260822
- apiVersion: v2
appVersion: 1.0.0.dev20260821
created: "2026-09-02T11:35:18.076269549Z"
dependencies:
- condition: ingress-nginx.enabled
name: ingress-nginx
repository: https://kubernetes.github.io/ingress-nginx
version: 4.11.8
- condition: prometheus.enabled
name: prometheus
repository: https://prometheus-community.github.io/helm-charts
version: 27.20.0
- condition: grafana.enabled
name: grafana
repository: https://grafana.github.io/helm-charts
version: 9.2.2
description: A Helm chart for deploying SkyPilot API server on Kubernetes
digest: 6d8e29dab594c1e37cdc75559c519b80c806b7a15b4cbe49df99dd723ce1010e
icon: https://raw.githubusercontent.com/skypilot-org/skypilot/master/charts/skypilot/skypilot.svg
name: skypilot-nightly
type: application
urls: