2d60799c49
CinderVolumeEdge is an optional service (defaults to OS::Heat::None) that can be enabled on DCN/Edge nodes for edge sites that support persistent block storage (i.e. cinder). The dcn-hci.yaml environment file enables the service. The new service supports the following edge deployment models: 1. Edge site with no block storage - Deploy DistributedCompute nodes - Use dcn.yaml environment file (the CinderVolumeEdge service remains disabled) 2. Edge site with traditional HCI storage - Deploy DistributedComputeHCI nodes - Use dcn-hci.yaml env file to enable the CinderVolumeEdge service - Use ceph-ansible.yaml env file to deploy ceph for the RBD backend 3. Edge site with quasi-hyperconverged storage - Deploy DistributedCompute nodes - Use dcn-hci.yaml env file to enable the CinderVolumeEdge service - Use ceph-ansible-external.yaml env file so the RBD backend can access an external ceph cluster This patch adds support for number 3, which is a new capability. Whereas traditional HCI means ceph and cinder services run on compute nodes, the new model is still quasi-hyperconverged because cinder (as well as glance) runs on the compute nodes. Change-Id: I56b5792c1d53bb8659e440f598006e471894ff2e
59 lines
2.5 KiB
YAML
59 lines
2.5 KiB
YAML
environments:
|
|
- name: dcn
|
|
title: Distributed Compute Node
|
|
description: |-
|
|
Environment file for deploying a remote site of distributed compute nodes
|
|
(DCN) in a separate stack (multi-stack) deployment.
|
|
files: &dcn_files
|
|
deployment/nova/nova-az-config.yaml:
|
|
parameters:
|
|
- NovaComputeAvailabilityZone
|
|
network/external.yaml:
|
|
parameters:
|
|
- ManageNetworks
|
|
deployment/nova/nova-base-puppet.yaml:
|
|
parameters:
|
|
- NovaCrossAZAttach
|
|
deployment/nova/nova-compute-container-puppet.yaml:
|
|
parameters:
|
|
- NovaDisableImageDownloadToRbd
|
|
sample_values: &sample_values
|
|
ManageNetworks: false
|
|
NovaCrossAZAttach: false
|
|
NovaDisableImageDownloadToRbd: true
|
|
resource_registry: &dcn_resource_registry
|
|
OS::TripleO::Network::Ports::RedisVipPort: ../network/ports/noop.yaml
|
|
OS::TripleO::Network::Ports::OVNDBsVipPort: ../network/ports/noop.yaml
|
|
OS::TripleO::Services::GlanceApiEdge: ../deployment/glance/glance-api-edge-container-puppet.yaml
|
|
OS::TripleO::Services::HAproxyEdge: ../deployment/haproxy/haproxy-edge-container-puppet.yaml
|
|
OS::TripleO::Services::NovaAZConfig: ../deployment/nova/nova-az-config.yaml
|
|
children:
|
|
- name: dcn-hci
|
|
title: Distributed Compute Node HCI
|
|
description: |-
|
|
Environment file for deploying a remote site of HCI distributed compute
|
|
nodes (DCN) in a separate stack (multi-stack) deployment. It should be
|
|
used in combination with environments/ceph-ansible/ceph-ansible.yaml.
|
|
files:
|
|
<<: *dcn_files
|
|
deployment/cinder/cinder-base.yaml:
|
|
parameters:
|
|
- CinderStorageAvailabilityZone
|
|
deployment/cinder/cinder-volume-container-puppet.yaml:
|
|
parameters:
|
|
- CinderVolumeCluster
|
|
- CinderEtcdLocalConnect
|
|
deployment/glance/glance-api-container-puppet.yaml:
|
|
parameters:
|
|
- GlanceEnabledImportMethods
|
|
sample_values:
|
|
<<: *sample_values
|
|
CinderStorageAvailabilityZone: dcn
|
|
CinderVolumeCluster: dcn
|
|
CinderEtcdLocalConnect: True
|
|
GlanceEnabledImportMethods: web-download,copy-image
|
|
resource_registry:
|
|
<<: *dcn_resource_registry
|
|
OS::TripleO::Services::Etcd: ../deployment/etcd/etcd-container-puppet.yaml
|
|
OS::TripleO::Services::CinderVolumeEdge: ../deployment/cinder/cinder-volume-container-puppet.yaml
|