-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.yaml
1819 lines (1819 loc) · 67.5 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:
barbican:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.332674957+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Barbican
digest: 6499c8dcd91f52c866c8d0609d8161b9e19338f6ceb226c752b855066dbadc25
home: https://docs.openstack.org/barbican/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Barbican/OpenStack_Project_Barbican_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: barbican
sources:
- https://opendev.org/openstack/barbican
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/barbican-2024.2.0.tgz
version: 2024.2.0
ceph-rgw:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.35470289+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Ceph RadosGW
digest: 4bef25fef6a12d0d0dc78736e2879f0dba53a9639d0a74859f16d58c24536210
home: https://github.com/ceph/ceph
name: ceph-rgw
urls:
- https://cloudification-io.github.io/ceph-rgw-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.350054225+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Ceph RadosGW
digest: 59f267583e1b6f24cec7845186b1a795022939f5e0c3324b5d8366f3cf718b5c
home: https://github.com/ceph/ceph
name: ceph-rgw
urls:
- https://cloudification-io.github.io/ceph-rgw-0.1.38.tgz
version: 0.1.38
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.345627358+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Ceph RadosGW
digest: 482ec82a2cdc9d057d79d45fc8203ee48725d9e9ed41288eb57ad4542dcd900d
home: https://github.com/ceph/ceph
name: ceph-rgw
urls:
- https://cloudification-io.github.io/ceph-rgw-0.1.37.tgz
version: 0.1.37
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.342076136+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Ceph RadosGW
digest: e683538801befa9656f57422c515b32f3b003c7382b68281c2bea715317f62fa
home: https://github.com/ceph/ceph
name: ceph-rgw
urls:
- https://cloudification-io.github.io/ceph-rgw-0.1.34.tgz
version: 0.1.34
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.337115789+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Ceph RadosGW
digest: d4e0d2f8646705c8fb7cfad63d476f3c2b7649f1a7cfcd657fa266ea08a9c282
home: https://github.com/ceph/ceph
name: ceph-rgw
urls:
- https://cloudification-io.github.io/ceph-rgw-0.1.33.tgz
version: 0.1.33
cert-management:
- apiVersion: v1
appVersion: "1.0"
created: "2024-12-30T17:22:25.355172648+04:00"
description: A Helm chart for the cert-management component
digest: bf71c5d3849eff6fd71904a9002ca12ee0cb49e1cc311a3dcddabc86417a9e95
name: cert-management
urls:
- https://cloudification-io.github.io/cert-management-0.1.0.tgz
version: 0.1.0
cinder:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.388850306+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: 0d5d37ec31b31d7763ab6f64d7048fda5beb78ffed484785de35d368cf6d7de9
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.38387158+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: 37bcdeb1ccbc08aa5bdad56cb233b9fbe85370a75bf093f10ce7fafb318dbd2c
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-0.3.25.tgz
version: 0.3.25
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.377734185+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: 1b69c3ec68087b738a566bc5fbe74d56c6fa3bc20c7d22e1571f0e66c2c7ab45
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-0.3.23.tgz
version: 0.3.23
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.371705025+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: bf2aff3463f34f6a1c7bce93905737ef3971335fb32ae94c15028b4e4713b2e2
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-0.3.22.tgz
version: 0.3.22
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.366655495+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: 4d5868fee7d58d4d4ea87b15a113c9ac16153df4533224625e9742a4b7106350
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-0.3.19.tgz
version: 0.3.19
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.360893901+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Cinder
digest: b9730d9bef173f2f12cde99c04ecda008e8447106268445ab8a108e8f32cdf7a
home: https://docs.openstack.org/cinder/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Cinder/OpenStack_Project_Cinder_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: cinder
sources:
- https://opendev.org/openstack/cinder
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/cinder-0.3.16.tgz
version: 0.3.16
designate:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.393156121+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Designate
digest: 382961288412769128d7f566e38f7a0e4a3bbe1b50f957253c922d35f1df973e
home: https://docs.openstack.org/designate/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Designate/OpenStack_Project_Designate_vertical.jpg
maintainers:
- name: OpenStack-Helm Authors
name: designate
sources:
- https://opendev.org/openstack/designate
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/designate-2024.2.0.tgz
version: 2024.2.0
external-dns-management:
- apiVersion: v1
appVersion: "1.0"
created: "2024-12-30T17:22:25.393783757+04:00"
description: A Helm chart for the external-dns-management component
digest: 0e298239e8180b1425ae5465b65f423e8af5c2e99209cc41ef6175a5e5bdf0d2
name: external-dns-management
urls:
- https://cloudification-io.github.io/external-dns-management-0.1.0.tgz
version: 0.1.0
gardener-extension-admission-calico:
- apiVersion: v1
appVersion: "1.0"
created: "2024-12-30T17:22:25.394192966+04:00"
description: A Helm chart for the Gardener Calico admission controller
digest: 54d7332b39094f8bf19256d9b6d8c139a136413d4376feb1f0c4d64d4a910711
name: gardener-extension-admission-calico
urls:
- https://cloudification-io.github.io/gardener-extension-admission-calico-0.1.0.tgz
version: 0.1.0
gardener-extension-admission-cilium:
- apiVersion: v1
appVersion: "1.0"
created: "2024-12-30T17:22:25.394593992+04:00"
description: A Helm chart for the Gardener Cilium admission controller
digest: 7c3907c083d6a3b2518f75423c4daf9502b30b6697c9f4590e57ec7b56a9f232
name: gardener-extension-admission-cilium
urls:
- https://cloudification-io.github.io/gardener-extension-admission-cilium-0.1.0.tgz
version: 0.1.0
gardener-extension-admission-openstack:
- apiVersion: v1
appVersion: "1.0"
created: "2024-12-30T17:22:25.394991434+04:00"
description: A Helm chart for the Gardener Openstack admission controller
digest: abd14d35ff3d86d5a259afa4040f22ecca85a5a59fb489e5f82ead1fc3ed0828
name: gardener-extension-admission-openstack
urls:
- https://cloudification-io.github.io/gardener-extension-admission-openstack-0.1.0.tgz
version: 0.1.0
glance:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.423119971+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: 7acf6f8218af36ce7d313ac34a02c784c09b26e92873f4a4df64818b0866e097
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.417995856+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: 89b789a0c5bc3e39e2db9c771371f21a95c6a9ebc94941c69229c5c729b5a6ba
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-0.5.2.tgz
version: 0.5.2
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.413579191+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: 8fa74f17c4f6ed8488101385370bd2048391d532b1724bcc5d8f0c658ddb1fd9
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-0.4.26.tgz
version: 0.4.26
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.408773019+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: a6561acee3e2fea55a010b506b49e1661cb81d65b24be64a456616a3da767a3f
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-0.4.25.tgz
version: 0.4.25
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.403788575+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: b578a04716bf60732053020e3af62fa98f1fb14c1d7b3b378ed82cd2911a261d
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-0.4.19.tgz
version: 0.4.19
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.399711597+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Glance
digest: a757c8daaae23c59bbacfbbf905b72b6a889554b533d766b7e5ef91d3b8eae9f
home: https://docs.openstack.org/glance/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Glance/OpenStack_Project_Glance_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: glance
sources:
- https://opendev.org/openstack/glance
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/glance-0.4.17.tgz
version: 0.4.17
heat:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.454076591+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: f521fffd994fce68108c6619cc07352b39163568da6068d33f134b78bd85e8cc
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.443870805+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: 3d1a6697644333d99e1b7a88d7fe8ba85a27f1da07d9204a97f9c495ecd5ccb2
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-0.3.16.tgz
version: 0.3.16
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.438402585+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: f0fd06e0f44547401baceeb8de5ebc68626804a88e296a0aa52fabb1024fea5d
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-0.3.15.tgz
version: 0.3.15
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.433594968+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: e778b24c5b8c734fba52aeab6215457558c41897db534c187712beaa0b94bec3
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-0.3.14.tgz
version: 0.3.14
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.428363536+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: a5ea175b938088536d2014d0215a4369d787db5f4d0c1bef64dfbb4fb38eb961
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-0.3.11.tgz
version: 0.3.11
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.449360883+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Heat
digest: 94dd632874ff1eb5206947522d3420d812222b7d03c30353bdd85c3afa285812
home: https://docs.openstack.org/heat/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Heat/OpenStack_Project_Heat_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: heat
sources:
- https://opendev.org/openstack/heat
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/heat-0.3.8.tgz
version: 0.3.8
helm-toolkit:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.465396232+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 27341215241866dd20d4d4f3e300274d9f8e42fad5659ad50afbf62d3c95903c
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.463655228+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 8b9d701437af519842ebe16e52f373329534419678ae91ec1e40c2be3c5123ac
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-0.2.78.tgz
version: 0.2.78
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.461198924+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 8b2926db526f82a781d000d1453576f157106bdfaac2ecc5cbc1efe7879a7ba2
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-0.2.69.tgz
version: 0.2.69
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.459602446+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 75eeaa989d95786f9615b235d972451e1f777c03543494bfe27b69a7f1ac2641
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-0.2.65.tgz
version: 0.2.65
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.458029045+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 3fe6924a7480dd0bc03d4bf8fb0644b0f86e1b1693e5394c782cb6a09af8ab85
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-0.2.63.tgz
version: 0.2.63
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.45626637+04:00"
description: OpenStack-Helm Helm-Toolkit
digest: 7326740f7fdea3b96853d6de3eb335694c9aec912003ae3504537e11a2a56fbe
home: https://docs.openstack.org/openstack-helm
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: helm-toolkit
sources:
- https://opendev.org/openstack/openstack-helm-infra
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/helm-toolkit-0.2.60.tgz
version: 0.2.60
horizon:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.492775569+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: 260a2c5db0b3555451783914b6460f24a386fefdbf498f158b9eda70acc1d4b5
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.487916139+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: 0a4abf7d4bc67db5c6a175ad2a4c3c1739076d1ed315d2deae9c3d12a6fe1f79
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-0.3.29.tgz
version: 0.3.29
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.483775199+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: 26ff82ae0bf9c2e303a1813c3999a0b596e0487cbf9cdb9a9a9b1eee1587e900
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-0.3.27.tgz
version: 0.3.27
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.4787928+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: 16f69fa9f1552ff04506e6d465374ad907ae6e5b3114bb02ce37634889c695d8
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-0.3.26.tgz
version: 0.3.26
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.474180315+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: 1740a8c214dac7bdceca527c6406a6bd51e2f3eb89edf28351ea361e5b4222c0
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-0.3.19.tgz
version: 0.3.19
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.470251624+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Horizon
digest: a01717f5df9cfcdc0247ce5f3f6a8a60fa8fffef2df9b1734975e467527e39df
home: https://docs.openstack.org/horizon/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Horizon/OpenStack_Project_Horizon_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: horizon
sources:
- https://opendev.org/openstack/horizon
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/horizon-0.3.16.tgz
version: 0.3.16
keystone:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.521731049+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: 4710b68b77a076cd53b06edca74f717fdbd6be4c3bbc3b4c2ecae9dda5c1cfb0
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.512021799+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: 9384ef77bb256d484415ecea26244295cc264d6be13e8c01c55f45230f074895
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-0.3.17.tgz
version: 0.3.17
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.507264179+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: bc0fc720c1b2f3a5e9a945a964441fe84d25de9176e1d52e8cbe5ce86a186ccb
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-0.3.15.tgz
version: 0.3.15
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.502062161+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: ff8db63a01af1edcf9a073a370c58aa3146d397028c0e71cfdd0568698c270af
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-0.3.13.tgz
version: 0.3.13
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.49780915+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: fd10eb00a6b915b8b600dc9717088fb44ebdcbdc90acd26ac32d2c8a1c6a2d36
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-0.3.10.tgz
version: 0.3.10
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.516544846+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Keystone
digest: 5c82d5a36231be6a6fbcbc852d56d3e32f15481c865762b8520c1146e1a62e7d
home: https://docs.openstack.org/keystone/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Keystone/OpenStack_Project_Keystone_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: keystone
sources:
- https://opendev.org/openstack/keystone
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/keystone-0.3.7.tgz
version: 0.3.7
libvirt:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.536214769+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm libvirt
digest: 722b701981c9cd6a53a05ea8a3023cdbe5dc341f38ab43dd13f49d837f01b8e2
home: https://libvirt.org
maintainers:
- name: OpenStack-Helm Authors
name: libvirt
sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/libvirt-2024.2.0.tgz
version: 2024.2.0
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.532522232+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm libvirt
digest: ccea7cc670a8bc498d9633b54655ca6474178aabdb600c876c2149b9d7b90994
home: https://libvirt.org
maintainers:
- name: OpenStack-Helm Authors
name: libvirt
sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/libvirt-0.1.40.tgz
version: 0.1.40
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.529895011+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm libvirt
digest: 16b141151c11acb48f5d115c9609141e98b1b728c248991c3746415d98647f86
home: https://libvirt.org
maintainers:
- name: OpenStack-Helm Authors
name: libvirt
sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/libvirt-0.1.31.tgz
version: 0.1.31
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.527426618+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm libvirt
digest: e231713779c4035def84fa19d2f066d1af44dc487dc6022d1e75ea3ba55e2833
home: https://libvirt.org
maintainers:
- name: OpenStack-Helm Authors
name: libvirt
sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/libvirt-0.1.30.tgz
version: 0.1.30
- apiVersion: v1
appVersion: v1.0.0
created: "2024-12-30T17:22:25.524140069+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm libvirt
digest: 655fe5ffaab0c9b08e0599f176deee9a1ee805eda7f49638371e4d9536ad682b
home: https://libvirt.org
maintainers:
- name: OpenStack-Helm Authors
name: libvirt
sources:
- https://libvirt.org/git/?p=libvirt.git;a=summary
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/libvirt-0.1.28.tgz
version: 0.1.28
manila:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.541334776+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Manila
digest: 8ba66f4c9dde95f0e1df0b4fb25c6aeb19ec453e01af90e8cf2912b2dbd48fe1
home: https://docs.openstack.org/manila/latest/
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Manila/OpenStack_Project_Manila_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: manila
sources:
- https://opendev.org/openstack/manila
- https://opendev.org/openstack/openstack-helm
urls:
- https://cloudification-io.github.io/manila-2024.2.0.tgz
version: 2024.2.0
masakari:
- apiVersion: v2
appVersion: v1.0.0
created: "2024-12-30T17:22:25.552610331+04:00"
dependencies:
- name: helm-toolkit
repository: https://cloudification-io.github.io
version: '>= 0.1.0'
description: OpenStack-Helm Masakari
digest: c8e69dbc81a596b20d1f3525ed6b7b5702dcf847db27785ce557cffd55d464fe
home: https://docs.openstack.org/developer/masakari
icon: https://www.openstack.org/themes/openstack/images/project-mascots/Masakari/OpenStack_Project_masakari_vertical.png
maintainers:
- name: OpenStack-Helm Authors
name: masakari
sources: