-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathprojects.yaml
More file actions
2615 lines (2613 loc) · 70.1 KB
/
projects.yaml
File metadata and controls
2615 lines (2613 loc) · 70.1 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
---
adjutant:
ptl:
name: Callum Dickinson
irc: Callum027
email: [email protected]
appointed:
- victoria
- yoga
- zed
- '2023.1'
- '2026.2'
irc-channel: openstack-adjutant
service: Operations Processes automation
mission: >
To provide an extensible API framework for exposing to users an
organization's automated business processes relating to account management
across OpenStack and external systems, that can be adapted to the unique
requirements of an organization's processes.
url: http://adjutant.readthedocs.io/
deliverables:
adjutant:
repos:
- openstack/adjutant
adjutant-ui:
repos:
- openstack/adjutant-ui
python-adjutantclient:
repos:
- openstack/python-adjutantclient
barbican:
ptl:
name: Mauricio Harley
irc: mharley
email: [email protected]
appointed:
- victoria
- xena
- '2025.2'
irc-channel: openstack-barbican
service: Key Manager service
mission: >
To produce a secret storage and generation system capable of providing key
management for services wishing to enable encryption features.
url: https://wiki.openstack.org/wiki/Barbican
deliverables:
barbican:
repos:
- openstack/barbican
ansible-role-atos-hsm:
repos:
- openstack/ansible-role-atos-hsm
ansible-role-lunasa-hsm:
repos:
- openstack/ansible-role-lunasa-hsm
ansible-role-thales-hsm:
repos:
- openstack/ansible-role-thales-hsm
barbican-specs:
release-management: none
repos:
- openstack/barbican-specs
barbican-tempest-plugin:
repos:
- openstack/barbican-tempest-plugin
barbican-ui:
release-management: none
repos:
- openstack/barbican-ui
python-barbicanclient:
repos:
- openstack/python-barbicanclient
blazar:
ptl:
name: Matt Crees
irc: No nick supplied
email: [email protected]
irc-channel: openstack-blazar
service: Resource reservation service
mission: >
Blazar's goal is to provide resource reservations in
OpenStack clouds for different resource types, both
virtual (instances, volumes, etc) and physical (hosts,
storage, etc.).
url: https://wiki.openstack.org/wiki/Blazar
deliverables:
blazar:
repos:
- openstack/blazar
blazar-dashboard:
repos:
- openstack/blazar-dashboard
blazar-nova:
repos:
- openstack/blazar-nova
blazar-specs:
release-management: none
repos:
- openstack/blazar-specs
blazar-tempest-plugin:
repos:
- openstack/blazar-tempest-plugin
python-blazarclient:
repos:
- openstack/python-blazarclient
cinder:
ptl:
name: Jon Bernard
irc: jbernard
email: [email protected]
irc-channel: openstack-cinder
service: Block Storage service
mission: >
To implement services and libraries to provide on-demand, self-service
access to Block Storage resources via abstraction and automation on top of
other block storage devices.
url: https://wiki.openstack.org/wiki/Cinder
deliverables:
cinder:
repos:
- openstack/cinder
cinder-specs:
release-management: none
repos:
- openstack/cinder-specs
cinder-tempest-plugin:
repos:
- openstack/cinder-tempest-plugin
cinderlib:
deprecated: '2024.1'
release-management: deprecated
repos:
- openstack/cinderlib
os-brick:
repos:
- openstack/os-brick
python-brick-cinderclient-ext:
repos:
- openstack/python-brick-cinderclient-ext
python-cinderclient:
repos:
- openstack/python-cinderclient
rbd-iscsi-client:
release-management: none
repos:
- openstack/rbd-iscsi-client
cloudkitty:
ptl:
name: Rafael Weingartner
irc: No nick supplied
email: [email protected]
appointed:
- victoria
- wallaby
irc-channel: cloudkitty
service: Rating service
mission: >
CloudKitty is a rating component for OpenStack. Its goal is to process data
from different metric backends and implement rating rule creation. Its role
is to fit in-between the raw metrics from OpenStack and the billing system
of a provider for chargeback purposes.
url: https://wiki.openstack.org/wiki/CloudKitty
deliverables:
cloudkitty:
repos:
- openstack/cloudkitty
python-cloudkittyclient:
repos:
- openstack/python-cloudkittyclient
cloudkitty-dashboard:
repos:
- openstack/cloudkitty-dashboard
cloudkitty-specs:
release-management: none
repos:
- openstack/cloudkitty-specs
cloudkitty-tempest-plugin:
repos:
- openstack/cloudkitty-tempest-plugin
cyborg:
ptl:
name: Sean Mooney
irc: sean-k-mooney
email: [email protected]
appointed:
- ussuri
- xena
- '2024.1'
irc-channel: openstack-cyborg
service: Accelerator Life Cycle Management
mission: >
To provide a general management framework for accelerators (FPGA,GPU,SoC,
NVMe SSD,DPDK/SPDK,eBPF/XDP ...)
url: https://wiki.openstack.org/wiki/Cyborg
deliverables:
cyborg:
repos:
- openstack/cyborg
cyborg-specs:
release-management: none
repos:
- openstack/cyborg-specs
python-cyborgclient:
repos:
- openstack/python-cyborgclient
cyborg-tempest-plugin:
repos:
- openstack/cyborg-tempest-plugin
designate:
ptl:
name: Omer Schwartz
irc: oschwart
email: [email protected]
appointed:
- ussuri
service: DNS service
irc-channel: openstack-dns
mission: >
To provide scalable, on demand, self service access to authoritative DNS
services, in technology-agnostic manner.
url: https://wiki.openstack.org/wiki/Designate
deliverables:
designate:
repos:
- openstack/designate
designate-dashboard:
repos:
- openstack/designate-dashboard
designate-specs:
release-management: none
repos:
- openstack/designate-specs
designate-tempest-plugin:
repos:
- openstack/designate-tempest-plugin
python-designateclient:
repos:
- openstack/python-designateclient
freezer:
leadership_type: distributed
liaisons:
release:
- name: Dmitriy Rabotyagov
irc: noonedeadpunk
email: [email protected]
tact-sig:
- name: Dmitriy Rabotyagov
irc: noonedeadpunk
email: [email protected]
security:
- name: Alvaro Soto
irc: khyr0n
email: [email protected]
tc-liaison:
- name: Dmitriy Rabotyagov
irc: noonedeadpunk
email: [email protected]
appointed:
- stein
- zed
irc-channel: openstack-freezer
service: Backup and Restore service
mission: >
To provide integrated tools for backing up and restoring cloud data in
multiple use cases. These resources include file systems, server
instances, volumes, and databases.
url: https://wiki.openstack.org/wiki/Freezer
deliverables:
freezer:
repos:
- openstack/freezer
freezer-api:
repos:
- openstack/freezer-api
freezer-specs:
release-management: none
repos:
- openstack/freezer-specs
freezer-tempest-plugin:
repos:
- openstack/freezer-tempest-plugin
freezer-web-ui:
repos:
- openstack/freezer-web-ui
python-freezerclient:
repos:
- openstack/python-freezerclient
glance:
ptl:
name: Cyril Roelandt
irc: No nick supplied
email: [email protected]
irc-channel: openstack-glance
service: Image service
mission: >
To provide services and associated libraries to store, browse, share,
distribute and manage bootable disk images, other data closely associated
with initializing compute resources, and metadata definitions.
url: https://wiki.openstack.org/wiki/Glance
deliverables:
glance:
repos:
- openstack/glance
glance-specs:
release-management: none
repos:
- openstack/glance-specs
glance-tempest-plugin:
repos:
- openstack/glance-tempest-plugin
glance-store:
repos:
- openstack/glance_store
os-test-images:
release-management: none
repos:
- openstack/os-test-images
python-glanceclient:
repos:
- openstack/python-glanceclient
heat:
ptl:
name: Takashi Kajinami
irc: tkajinam
email: [email protected]
appointed:
- yoga
- zed
irc-channel: heat
service: Orchestration service
mission: >
To orchestrate composite cloud applications using a declarative
template format through an OpenStack-native REST API.
url: https://wiki.openstack.org/wiki/Heat
deliverables:
heat:
repos:
- openstack/heat
heat-agents:
repos:
- openstack/heat-agents
heat-cfntools:
repos:
- openstack/heat-cfntools
heat-dashboard:
repos:
- openstack/heat-dashboard
heat-specs:
release-management: none
repos:
- openstack/heat-specs
heat-tempest-plugin:
repos:
- openstack/heat-tempest-plugin
heat-templates:
release-management: none
repos:
- openstack/heat-templates
python-heatclient:
repos:
- openstack/python-heatclient
os-apply-config:
repos:
- openstack/os-apply-config
os-collect-config:
repos:
- openstack/os-collect-config
os-refresh-config:
repos:
- openstack/os-refresh-config
yaql:
repos:
- openstack/yaql
horizon:
ptl:
name: Tatiana Ovchinnikova
irc: tmazur
email: [email protected]
irc-channel: openstack-horizon
service: Dashboard
mission: >
To provide an extensible unified web based user interface for all
OpenStack services.
url: https://wiki.openstack.org/wiki/Horizon
deliverables:
horizon:
repos:
- openstack/horizon
ui-cookiecutter:
release-management: none
repos:
- openstack/ui-cookiecutter
xstatic-angular:
repos:
- openstack/xstatic-angular
xstatic-angular-bootstrap:
repos:
- openstack/xstatic-angular-bootstrap
xstatic-angular-fileupload:
repos:
- openstack/xstatic-angular-fileupload
xstatic-angular-gettext:
repos:
- openstack/xstatic-angular-gettext
xstatic-angular-lrdragndrop:
repos:
- openstack/xstatic-angular-lrdragndrop
xstatic-angular-material:
repos:
- openstack/xstatic-angular-material
xstatic-angular-notify:
repos:
- openstack/xstatic-angular-notify
xstatic-angular-schema-form:
repos:
- openstack/xstatic-angular-schema-form
xstatic-angular-smart-table:
repos:
- openstack/xstatic-angular-smart-table
xstatic-angular-uuid:
repos:
- openstack/xstatic-angular-uuid
xstatic-angular-vis:
repos:
- openstack/xstatic-angular-vis
xstatic-bootstrap-datepicker:
repos:
- openstack/xstatic-bootstrap-datepicker
xstatic-bootstrap-scss:
repos:
- openstack/xstatic-bootstrap-scss
xstatic-bootswatch:
repos:
- openstack/xstatic-bootswatch
xstatic-d3:
repos:
- openstack/xstatic-d3
xstatic-hogan:
repos:
- openstack/xstatic-hogan
xstatic-filesaver:
repos:
- openstack/xstatic-filesaver
xstatic-jasmine:
repos:
- openstack/xstatic-jasmine
xstatic-jquery-migrate:
repos:
- openstack/xstatic-jquery-migrate
xstatic-jquery.quicksearch:
repos:
- openstack/xstatic-jquery.quicksearch
xstatic-jquery.tablesorter:
repos:
- openstack/xstatic-jquery.tablesorter
xstatic-js-yaml:
repos:
- openstack/xstatic-js-yaml
xstatic-jsencrypt:
repos:
- openstack/xstatic-jsencrypt
xstatic-json2yaml:
repos:
- openstack/xstatic-json2yaml
xstatic-magic-search:
repos:
- openstack/xstatic-magic-search
xstatic-mdi:
repos:
- openstack/xstatic-mdi
xstatic-objectpath:
repos:
- openstack/xstatic-objectpath
xstatic-rickshaw:
repos:
- openstack/xstatic-rickshaw
xstatic-roboto-fontface:
repos:
- openstack/xstatic-roboto-fontface
xstatic-spin:
repos:
- openstack/xstatic-spin
xstatic-tv4:
repos:
- openstack/xstatic-tv4
ironic:
leadership_type: distributed
irc-channel: openstack-ironic
service: Bare Metal service
mission: >
To produce an OpenStack service and associated libraries capable of
managing and provisioning physical machines, and to do this in a
security-aware and fault-tolerant manner.
url: https://wiki.openstack.org/wiki/Ironic
deliverables:
bifrost:
repos:
- openstack/bifrost
ironic:
repos:
- openstack/ironic
ironic-inspector:
repos:
- openstack/ironic-inspector
deprecated: '2026.1'
release-management: deprecated
ironic-lib:
repos:
- openstack/ironic-lib
deprecated: '2025.1'
release-management: deprecated
ironic-prometheus-exporter:
repos:
- openstack/ironic-prometheus-exporter
ironic-python-agent:
repos:
- openstack/ironic-python-agent
ironic-python-agent-builder:
repos:
- openstack/ironic-python-agent-builder
ironic-specs:
release-management: none
repos:
- openstack/ironic-specs
ironic-tempest-plugin:
repos:
- openstack/ironic-tempest-plugin
ironic-ui:
repos:
- openstack/ironic-ui
molteniron:
release-management: none
repos:
- openstack/molteniron
networking-baremetal:
repos:
- openstack/networking-baremetal
networking-generic-switch:
repos:
- openstack/networking-generic-switch
python-ironicclient:
repos:
- openstack/python-ironicclient
sushy:
repos:
- openstack/sushy
sushy-tools:
repos:
- openstack/sushy-tools
tenks:
repos:
- openstack/tenks
virtualbmc:
repos:
- openstack/virtualbmc
virtualpdu:
repos:
- openstack/virtualpdu
liaisons:
release:
- name: Riccardo Pittau
irc: rpittau
email: [email protected]
tact-sig:
- name: Dmitry Tantsur
irc: dtantsur
email: [email protected]
security:
- name: Jay Faulkner
irc: JayF
email: [email protected]
tc-liaison:
- name: Doug Goldstein
irc: cardoe
email: [email protected]
events-liaison:
- name: Iury Gregory Melo Ferreira
irc: iurygregory
email: [email protected]
keystone:
ptl:
name: Artem Goncharov
irc: gtema
email: [email protected]
appointed:
- '2023.1'
irc-channel: openstack-keystone
service: Identity service
mission: >
To facilitate API client authentication, service discovery, distributed
multi-tenant authorization, and auditing.
url: https://wiki.openstack.org/wiki/Keystone
deliverables:
keystone:
repos:
- openstack/keystone
keystone-specs:
release-management: none
repos:
- openstack/keystone-specs
keystone-tempest-plugin:
repos:
- openstack/keystone-tempest-plugin
keystonemiddleware:
repos:
- openstack/keystonemiddleware
pycadf:
repos:
- openstack/pycadf
python-keystoneclient:
repos:
- openstack/python-keystoneclient
ldappool:
repos:
- openstack/ldappool
kolla:
ptl:
name: Michal Nasiadka
irc: mnasiadka
email: [email protected]
irc-channel: openstack-kolla
service: Containerised deployment of OpenStack
mission: >
To provide tools to create production-ready containers and to
provide deployment tools for operating OpenStack clouds.
url: https://wiki.openstack.org/wiki/Kolla
deliverables:
ansible-collection-kolla:
repos:
- openstack/ansible-collection-kolla
kolla:
repos:
- openstack/kolla
kolla-ansible:
repos:
- openstack/kolla-ansible
kayobe:
repos:
- openstack/kayobe
- openstack/kayobe-config
- openstack/kayobe-config-dev
magnum:
ptl:
name: Michal Nasiadka
irc: mnasiadka
email: [email protected]
appointed:
- zed
irc-channel: openstack-containers
service: Container Infrastructure Management service
mission: >
To provide a set of services for provisioning, scaling, and managing
container orchestration engines.
url: https://wiki.openstack.org/wiki/Magnum
deliverables:
magnum:
repos:
- openstack/magnum
magnum-capi-helm:
repos:
- openstack/magnum-capi-helm
magnum-capi-helm-charts:
repos:
- openstack/magnum-capi-helm-charts
magnum-specs:
release-management: none
repos:
- openstack/magnum-specs
magnum-tempest-plugin:
repos:
- openstack/magnum-tempest-plugin
magnum-ui:
repos:
- openstack/magnum-ui
python-magnumclient:
repos:
- openstack/python-magnumclient
manila:
ptl:
name: Carlos Silva
irc: carloss
email: [email protected]
irc-channel: openstack-manila
service: Shared File Systems service
mission: >
To provide a set of services for management of shared file systems
in a multitenant cloud environment, similar to how OpenStack provides
for block-based storage management through the Cinder project.
url: https://wiki.openstack.org/wiki/Manila
deliverables:
manila:
repos:
- openstack/manila
manila-image-elements:
repos:
- openstack/manila-image-elements
manila-specs:
release-management: none
repos:
- openstack/manila-specs
manila-tempest-plugin:
repos:
- openstack/manila-tempest-plugin
manila-test-image:
release-management: none
repos:
- openstack/manila-test-image
manila-ui:
repos:
- openstack/manila-ui
python-manilaclient:
repos:
- openstack/python-manilaclient
masakari:
ptl:
name: Masahito Muroi
irc: masahito
email: [email protected]
appointed:
- yoga
- zed
- '2023.1'
- '2025.2'
- '2026.2'
irc-channel: openstack-masakari
service: Instances High Availability service
mission: >
Provide instances high availability service for OpenStack
clouds by automatically recovering the instances from failures.
url: https://wiki.openstack.org/wiki/Masakari
deliverables:
masakari:
repos:
- openstack/masakari
masakari-monitors:
repos:
- openstack/masakari-monitors
masakari-specs:
release-management: none
repos:
- openstack/masakari-specs
python-masakariclient:
repos:
- openstack/python-masakariclient
masakari-dashboard:
repos:
- openstack/masakari-dashboard
mistral:
ptl:
name: Arnaud Morin
irc: amorin
email: [email protected]
appointed:
- '2024.1'
- '2025.1'
- '2026.2'
irc-channel: openstack-mistral
service: Workflow service
mission: >
Provide a simple YAML-based language to write workflows (tasks and
transition rules) and a service that allows to upload them, modify, run
them at scale and in a highly available manner, manage and monitor
workflow execution state and state of individual tasks.
url: https://wiki.openstack.org/wiki/Mistral
deliverables:
mistral:
repos:
- openstack/mistral
mistral-dashboard:
repos:
- openstack/mistral-dashboard
mistral-specs:
release-management: none
repos:
- openstack/mistral-specs
mistral-tempest-plugin:
repos:
- openstack/mistral-tempest-plugin
python-mistralclient:
repos:
- openstack/python-mistralclient
mistral-lib:
repos:
- openstack/mistral-lib
mistral-extra:
repos:
- openstack/mistral-extra
neutron:
ptl:
name: Brian Haley
irc: haleyb
email: [email protected]
irc-channel: openstack-neutron
service: Networking service
mission: >
To implement services and associated libraries to provide on-demand,
scalable, and technology-agnostic network abstraction.
url: https://wiki.openstack.org/wiki/Neutron
deliverables:
networking-bagpipe:
repos:
- openstack/networking-bagpipe
networking-bgpvpn:
repos:
- openstack/networking-bgpvpn
networking-odl:
deprecated: '2023.2'
release-management: deprecated
repos:
- openstack/networking-odl
networking-sfc:
repos:
- openstack/networking-sfc
neutron-fwaas:
repos:
- openstack/neutron-fwaas
neutron:
repos:
- openstack/neutron
neutron-dynamic-routing:
repos:
- openstack/neutron-dynamic-routing
neutron-lib:
repos:
- openstack/neutron-lib
neutron-specs:
release-management: none
repos:
- openstack/neutron-specs
neutron-tempest-plugin:
repos:
- openstack/neutron-tempest-plugin
ovn-octavia-provider:
repos:
- openstack/ovn-octavia-provider
ovsdbapp:
repos:
- openstack/ovsdbapp
python-neutronclient:
repos:
- openstack/python-neutronclient
neutron-fwaas-dashboard:
repos:
- openstack/neutron-fwaas-dashboard
neutron-vpnaas:
repos:
- openstack/neutron-vpnaas
neutron-vpnaas-dashboard:
repos:
- openstack/neutron-vpnaas-dashboard
os-ken:
repos:
- openstack/os-ken
tap-as-a-service:
repos:
- openstack/tap-as-a-service
ovn-bgp-agent:
repos:
- openstack/ovn-bgp-agent
nova:
ptl:
name: René Ribaud
irc: Uggla
email: [email protected]
irc-channel: openstack-nova
service: Compute service
mission: >
To implement services and associated libraries to provide massively
scalable, on demand, self service access to compute resources, including
bare metal, virtual machines, and containers.
url: https://wiki.openstack.org/wiki/Nova
deliverables:
nova:
repos:
- openstack/nova
nova-specs:
release-management: none
repos:
- openstack/nova-specs
nova-contrib:
release-management: none
repos:
- openstack/nova-contrib
python-novaclient:
repos:
- openstack/python-novaclient
os-vif:
repos:
- openstack/os-vif
placement:
repos:
- openstack/placement
os-traits:
repos:
- openstack/os-traits
osc-placement:
repos:
- openstack/osc-placement
os-resource-classes:
repos:
- openstack/os-resource-classes
octavia:
ptl:
name: Gregory Thiemonge
irc: No nick supplied
email: [email protected]
appointed:
- wallaby
irc-channel: openstack-lbaas
service: Load-balancer service
mission: >
To provide scalable, on demand, self service access to load-balancer
services, in technology-agnostic manner.
url: https://wiki.openstack.org/wiki/Octavia
deliverables:
octavia:
repos:
- openstack/octavia
octavia-dashboard:
repos:
- openstack/octavia-dashboard
octavia-tempest-plugin:
repos:
- openstack/octavia-tempest-plugin
python-octaviaclient:
repos:
- openstack/python-octaviaclient
octavia-lib:
repos:
- openstack/octavia-lib
OpenStack Charms:
ptl:
name: Felipe Reyes
irc: freyes
email: [email protected]
appointed:
- wallaby
- zed
- '2023.1'
- '2023.2'
- '2024.2'
- '2025.2'
- '2026.1'
irc-channel: openstack-charms
service: Juju Charms for deployment of OpenStack
mission: >
Develop and maintain Juju Charms for deploying and managing
OpenStack services.
url: https://docs.openstack.org/charm-guide/latest/
deliverables:
charms.ceph:
release-management: external
repos:
- openstack/charms.ceph
charms.openstack:
release-management: external
repos:
- openstack/charms.openstack
charm-aodh:
release-management: external
repos:
- openstack/charm-aodh
charm-barbican:
release-management: external
repos:
- openstack/charm-barbican
charm-barbican-softhsm:
release-management: external
repos:
- openstack/charm-barbican-softhsm
charm-barbican-vault:
release-management: external
repos:
- openstack/charm-barbican-vault
charm-ceilometer:
release-management: external
repos:
- openstack/charm-ceilometer
charm-ceilometer-agent:
release-management: external
repos:
- openstack/charm-ceilometer-agent
charm-ceph-dashboard:
release-management: external
repos:
- openstack/charm-ceph-dashboard
charm-ceph-iscsi:
release-management: external
repos:
- openstack/charm-ceph-iscsi
charm-ceph-mon:
release-management: external
repos:
- openstack/charm-ceph-mon
charm-ceph-nfs:
release-management: external
repos:
- openstack/charm-ceph-nfs
charm-ceph-osd: