Merge "Network Isolation support for containerized compute"
This commit is contained in:
commit
a491e05f9d
@ -22,7 +22,12 @@ https://github.com/openstack/tripleo-common/blob/master/scripts/tripleo.sh
|
|||||||
|
|
||||||
Create the Overcloud:
|
Create the Overcloud:
|
||||||
```
|
```
|
||||||
$ openstack overcloud deploy --templates=tripleo-heat-templates -e tripleo-heat-templates/environments/docker-rdo.yaml --libvirt-type=qemu
|
$ openstack overcloud deploy --templates=tripleo-heat-templates -e tripleo-heat-templates/environments/docker.yaml -e tripleo-heat-templates/environments/docker-network.yaml --libvirt-type=qemu
|
||||||
|
```
|
||||||
|
|
||||||
|
Using Network Isolation in the Overcloud:
|
||||||
|
```
|
||||||
|
$ openstack overcloud deploy --templates=tripleo-heat-templates -e tripleo-heat-templates/environments/docker.yaml -e tripleo-heat-templates/environments/docker-network-isolation.yaml --libvirt-type=qemu
|
||||||
```
|
```
|
||||||
|
|
||||||
Source the overcloudrc and then you can use the overcloud.
|
Source the overcloudrc and then you can use the overcloud.
|
||||||
|
4
environments/docker-network-isolation.yaml
Normal file
4
environments/docker-network-isolation.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
parameter_defaults:
|
||||||
|
NeutronAgentConfig: "/etc/neutron/neutron.conf,/etc/neutron/plugins/openvswitch/openvswitch_agent.ini"
|
||||||
|
NeutronAgentPluginVolume: "/var/lib/etc-data/neutron/plugins/ml2/openvswitch_agent.ini:/var/lib/kolla/config_files/openvswitch_agent.ini:ro"
|
||||||
|
NeutronAgentOvsVolume: "/var/lib/etc-data/neutron/conf.d/neutron-openvswitch-agent:/etc/neutron/conf.d/neutron-openvswitch-agent:ro"
|
2
environments/docker-network.yaml
Normal file
2
environments/docker-network.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
resource_registry:
|
||||||
|
OS::TripleO::Compute::Net::SoftwareConfig: ../net-config-bridge.yaml
|
@ -2,7 +2,6 @@ resource_registry:
|
|||||||
# Docker container with heat agents for containerized compute node.
|
# Docker container with heat agents for containerized compute node.
|
||||||
OS::TripleO::ComputePostDeployment: ../docker/compute-post.yaml
|
OS::TripleO::ComputePostDeployment: ../docker/compute-post.yaml
|
||||||
OS::TripleO::NodeUserData: ../docker/firstboot/install_docker_agents.yaml
|
OS::TripleO::NodeUserData: ../docker/firstboot/install_docker_agents.yaml
|
||||||
OS::TripleO::Compute::Net::SoftwareConfig: ../net-config-bridge.yaml
|
|
||||||
|
|
||||||
parameters:
|
parameters:
|
||||||
NovaImage: atomic-image
|
NovaImage: atomic-image
|
Loading…
Reference in New Issue
Block a user