搜索

3.6. 使用路由网络配置和部署每个单元堆栈

download PDF

执行以下步骤配置一个单元堆栈 cell1。对您要部署的每个额外单元堆栈重复这个过程,直到部署所有单元堆栈为止。

流程

  1. 为单元目录中的额外单元格创建一个新的环境文件,以用于特定于单元的参数,例如: /home/stack/cell1/cell1.yaml
  2. 在环境文件中添加以下参数:

    resource_registry:
      OS::TripleO::CellControllerCell1::Net::SoftwareConfig: /home/stack/templates/nic-configs/cellcontroller.yaml
      OS::TripleO::ComputeCell1::Net::SoftwareConfig: /home/stack/templates/nic-configs/compute.yaml
    
    parameter_defaults:
      # Specify that this is an additional cell
      NovaAdditionalCell: True
    
      # Enable local metadata API for each cell
      NovaLocalMetadataPerCell: True
    
      #Disable network creation in order to use the `network_data.yaml` file from the overcloud stack,
      # and create ports for the nodes in the separate stacks on the existing networks.
      ManageNetworks: false
    
      # Specify that this is an additional cell
      NovaAdditionalCell: True
    
      # The DNS names for the VIPs for the cell
      CloudDomain: redhat.local
      CloudName: cell1.redhat.local
      CloudNameInternal: cell1.internalapi.redhat.local
      CloudNameStorage: cell1.storage.redhat.local
      CloudNameStorageManagement: cell1.storagemgmt.redhat.local
      CloudNameCtlplane: cell1.ctlplane.redhat.local
  3. 要在每个单元格而不是全局 Controller 中运行 Compute 元数据 API,请在单元环境文件中添加以下参数:

    parameter_defaults:
      NovaLocalMetadataPerCell: True
  4. 在单元环境文件中添加单元的虚拟 IP 地址(VIP)信息:

    parameter_defaults:
      ...
      VipSubnetMap:
        InternalApi: internal_api_cell1
        Storage: storage_cell1
        StorageMgmt: storage_mgmt_cell1
        External: external_subnet

    这会在与 L2 网络段关联的子网中创建虚拟 IP 地址,这个单元格 Controller 节点已连接到这个地址。

  5. 使用其他环境文件将环境文件添加到堆栈中,并部署单元堆栈:

    (undercloud)$ openstack overcloud deploy --templates \
     --stack cell1 \
     -e [your environment files] \
     -e /home/stack/templates/overcloud-baremetal-deployed.yaml \
     -e /home/stack/templates/overcloud-networks-deployed.yaml \
     -e /home/stack/templates/overcloud-vip-deployed.yaml \
     -r /home/stack/cell1/cell1_roles_data.yaml \
     -n /home/stack/common/network_data_spine_leaf.yaml \
     -e /home/stack/common/default_cell_export.yaml \
     -e /home/stack/cell1/cell1.yaml
Red Hat logoGithubRedditYoutubeTwitter

学习

尝试、购买和销售

社区

关于红帽文档

通过我们的产品和服务,以及可以信赖的内容,帮助红帽用户创新并实现他们的目标。

让开源更具包容性

红帽致力于替换我们的代码、文档和 Web 属性中存在问题的语言。欲了解更多详情,请参阅红帽博客.

關於紅帽

我们提供强化的解决方案,使企业能够更轻松地跨平台和环境(从核心数据中心到网络边缘)工作。

© 2024 Red Hat, Inc.