
This lays the groundwork for the docker compute container. The compute node is composed of libvirt container and a nove-compute container. We are going to have to sort out how to get k8s to schedule this pod 1 per node. Change-Id: I1e06e4b5f5bde83b582edfc1094084a4ee353371 Partial-blueprint: kube-libvirt-container Partial-blueprint: kube-nova-container
15 lines
617 B
Bash
Executable File
15 lines
617 B
Bash
Executable File
#!/bin/bash
|
|
# If the directories were numbered, a simple find could be used to build ;-)
|
|
|
|
CONTAINERS=(fedora-rdo-base cinder glance/glance-base glance/glance-api glance/glance-registry heat/heat-base heat/heat-api heat/heat-engine keystone mariadb rabbitmq swift/swift-base swift/swift-account swift/swift-container swift/swift-object swift/swift-proxy-server nova-compute/nova-base nova-compute/nova-compute nova-compute/nova-libvirt)
|
|
|
|
for IMAGE in ${CONTAINERS[@]}; do
|
|
pushd .
|
|
cd ${IMAGE}
|
|
echo "Building $IMAGE"
|
|
./build
|
|
echo "Pushing $IMAGE"
|
|
./push
|
|
popd
|
|
done
|