zoukankan      html  css  js  c++  java
  • OpenStack 组成 架构

    Components of OpenStack

    OpenStack is on a mission: to provide scalable, elastic cloud computing for both public and private clouds, large and small. There are currently seven core components of OpenStack: Compute, Object Storage, Identity, Dashboard, Block Storage, Network and Image Service.

    • Object Store (codenamed "Swift") provides object storage. It allows you to store or retrieve files (but not mount directories like a fileserver). Several companies provide commercial storage services based on Swift.

    • Image (codenamed "Glance") provides a catalog and repository for virtual disk images. These disk images are mostly commonly used in OpenStack Compute. While this service is technically optional, any cloud of size will require it.

    • Compute (codenamed "Nova") provides virtual servers upon demand. Rackspace and HP provide commercial compute services built on Nova and it is used internally at companies like Mercado Libre and NASA (where it originated).

    • Dashboard (codenamed "Horizon") provides a modular web-based user interface for all the OpenStack services. With this web GUI, you can perform most operations on your cloud like launching an instance, assigning IP addresses and setting access controls.

    • Identity (codenamed "Keystone") provides authentication验证 and authorization授权 for all the OpenStack services. It also provides a service catalog of services within a particular OpenStack cloud.

    • Network (codenamed "Quantum") provides "network connectivity as a service" between interface devices managed by other OpenStack services (most likely Nova). The service works by allowing users to create their own networks and then attach interfaces to them. OpenStack Network has a pluggable architecture to support many popular networking vendors and technologies.

    • Block Storage (codenamed "Cinder") provides persistent block storage to guest VMs.

     

    Conceptual Architecture 概念架构

    The OpenStack project as a whole is designed to deliver a massively scalable cloud operating system. To achieve this, each of the constituent services are designed to work together to provide a complete Infrastructure as a Service (IaaS). This integration is facilitated促进 through public application programming interfaces (APIs) that each service offers (and in turn can consume). 

    Conceptually, you can picture the relationships between the services as so:

     

    • Dashboard ("Horizon") provides a web front end to the other OpenStack services

    • Compute ("Nova") stores and retrieves virtual disks ("images") and associated metadata in Image ("Glance")

    • Network ("Quantum") provides virtual networking for Compute.

    • Block Storage ("Cinder") provides storage volumes for Compute.

    • Image ("Glance") can store the actual virtual disk files in the Object Store("Swift")

    • All the services authenticate with Identity ("Keystone")

     

  • 相关阅读:
    [转]使用RenderQueueListener针对不同的渲染组改变摄像机的裁剪面
    [转]Calculating Stereo Pairs
    [转]Ogre如何在渲染时切换指定物体的材质技术
    <转>C#操作word
    SQL常用语句二
    SQL高级查询
    C# word打印文档打印不全(数据为完全发送至打印机,程序已经退出)
    access事务插入多条记录
    C#操作word的一些基本方法(word打印,插入文件,插入图片,定位页眉页脚,去掉横线)
    Sqlserver 存储过程中结合事务的代码
  • 原文地址:https://www.cnblogs.com/windlaughing/p/3224782.html
Copyright © 2011-2022 走看看