diff options
author | Ryan Hallisey <rhallise@redhat.com> | 2015-10-13 12:00:20 -0400 |
---|---|---|
committer | Ryan Hallisey <rhallise@redhat.com> | 2015-11-02 19:30:37 +0000 |
commit | 3a9186d6585d13528bf904a40556242c02ba4233 (patch) | |
tree | cdd5cf76f5bbe0057dc17150e9231cc51d9fe266 /environments | |
parent | 04327663a90fdb2caa963b21072e599a66e61d05 (diff) |
Update docker compute environment to use json config
In liberty, Kolla copies around files and runs the service given
a specified command, by reading a json file.
This will update the existing work to follow that template by
creating a json file for each of the services and pushing it
into the containers.
Change-Id: I5085d1896ea965fd8854765b055068a5ad30bcfd
Co-Authored-By: Jeff Peeler <jpeeler@redhat.com>
Diffstat (limited to 'environments')
-rw-r--r-- | environments/docker-rdo.yaml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/environments/docker-rdo.yaml b/environments/docker-rdo.yaml index d5791369..5c9f1cb2 100644 --- a/environments/docker-rdo.yaml +++ b/environments/docker-rdo.yaml @@ -7,11 +7,12 @@ resource_registry: parameters: NovaImage: fedora-atomic +# FIXME: When Kolla cuts liberty tag we can use kollaglue registry parameter_defaults: DockerComputeImage: rthallisey/centos-binary-nova-compute:liberty - DockerComputeDataImage: kollaglue/centos-rdo-nova-compute-data:liberty2 - DockerLibvirtImage: kollaglue/centos-rdo-nova-libvirt:liberty2 - DockerNeutronAgentImage: kollaglue/centos-rdo-neutron-agents:liberty2 - DockerOpenvswitchImage: rthallisey/centos-rdo-neutron-openvswitch-agent:latest - DockerOvsVswitchdImage: kollaglue/centos-rdo-ovs-vswitchd:liberty2 - DockerOpenvswitchDBImage: kollaglue/centos-rdo-ovs-db-server:liberty2 + DockerComputeDataImage: rthallisey/centos-binary-data:liberty + DockerLibvirtImage: rthallisey/centos-binary-nova-libvirt:liberty + DockerNeutronAgentImage: rthallisey/centos-binary-neutron-agents:liberty + DockerOpenvswitchImage: rthallisey/centos-binary-neutron-openvswitch-agent:liberty + DockerOvsVswitchdImage: rthallisey/centos-binary-openvswitch-vswitchd:liberty + DockerOpenvswitchDBImage: rthallisey/centos-binary-openvswitch-db-server:liberty |