- 主页
- git源码地址
- Github源码镜像
- 组件项目 (Big Tent Governance)
- 官方文档
- 邮件列表
- IRC(freenode)
- Code review
- Roadmap
- Wiki
- Blueprints
- Bugs
- 支持公司 (Companies Supporting The OpenStack Foundation)
- 贡献统计(来源于stacklytics) (Provide transparent and meaningful statistics regarding contributions to both OpenStack itself and projects related to OpenStack.)
- 社区开发文档(一步步教你如何加入社区开发)
- 代码提交测试(新手代码提交测试,新手可以通过此熟悉代码提交流程)
- git commit message规范(提交代码时必须遵循的message的规范)
- Openstack代码规范(Openstack代码规范,开发人员必读)
- Openstack各个组件的成熟度和热度统计
- Openstack版本列表(可以查看数字版本对应Openstack版本代号,如Nova版本的13.x.x对应mitaka版本)
Provide a significant portion of the funding to achieve the Foundation's mission of protecting, empowering and promoting the OpenStack community and software. Each Platinum Member's company strategy aligns with the OpenStack mission and is responsible for committing full-time resources toward the project. There are eight Platinum Members at any given time, each of which holds a seat on the Board of Directors.
Provide funding and pledge strategic alignment to the OpenStack mission. There can be up to twenty-four Gold Members at any given time, subject to board approval.
- Aptira
- CCAT
- Cisco
- Dell
- DreamHost
- EasyStack
- EMC
- Ericsson
- Fujitsu
- Hitachi
- Huawei
- inwinSTACK
- Juniper Networks
- Mirantis
- NEC
- NetApp
- Symantec
- UnitedStack Inc.
- Virtuozzo
- Yahoo Inc.
- Devstack(Oneiric powered development environment for openstack.)
- Fuel(The leading purpose-built open source deployment and management tool for OpenStack.)
- RDO(A communiaty of people using and deploying OpenStack on CentOS, Fedora, and Red Hat Enterprise Linux.)
- openstack-puppet(Bring scalable and reliable IT automation to OpenStack cloud deployments using puppet.)
- openstack-ansible(Ansible playbooks for deploying OpenStack.)
- kolla(Deploying OpenStack using Docker.)
- TripleO(A program aimed at installing, upgrading and operating OpenStack clouds using OpenStacks own cloud facilities as the foundations.)
- SaltStack(Deploying Openstack using saltstack.)
- packstack (Install utility to deploy openstack on multiple hosts.)
- cloudpulse: Openstack服务状态监控
- Vitrage: Openstack故障分析, 故障生成树
- fuel-plugin-external-zabbix: Fuel Openstack zabbix监控项目,包含所有的监控项
- fuel-ostf: Fuel的集成测试、功能测试框架
- AWS(Offers reliable, scalable, and inexpensive cloud computing services.)
- CloudStack(Open source software designed to deploy and manage large networks of virtual machines, as highly scalable Infrastructure as a Service (IaaS) cloud computing platform.)
- Vmware(The industry-leading virtualization software company.)
- Docker(Docker containers and tooling make building and shipping applications dramatically easier and faster.)
列出所有的错误云主机:
nova list --status error --all-tenants
列出主机和映射的宿主机:
nova list --fields name,host
获取所有主机的id:
nova list --minimal | tail -n +4 | head -n -1 | cut -d ' ' -f 2
获取所有error状态的主机id:
nova list --minimal --status error --all-tenants | tail -n +4 | head -n -1 | cut -d ' ' -f 2
获取所有名称以"test"开头的主机:
nova list --name "^test"
获取所有主机挂载的volume id:
nova show --minimal 65e761b3-63b4-498f-9735-08e246c1e976 | grep 'os-extended-volumes:volumes_attached' | cut -d '|' -f 3 | jq '.[].id' | sed 's/"//g'
获取所有主机挂载的volume id以及设备名称:
nova show --minimal | grep 'os-extended-volumes:volumes_attached' | cut -d '|' -f 3 | jq '.[]|.id + " " + .device_name' | sed 's/"//g'
获取所有error状态的实例:
cinder list --status error --all-tenants | tail -n +4 | head -n -1 | cut -d '|' -f 2
- sahara-image-elements(Disk image elements for Sahara.)
- prepared images.
- Building Images for Vanilla Plugin.
- Building Images for Cloudera Plugin.