Steven Dake c2517e40f2 Start nova-controller services and pods
Start all of the nova-controller services and pods with the start-all-pods
and start-all-services startup scripts

Change-Id: I47fe15d67ef177fbecf342357bff44cf2fdb5d9e
2014-10-14 10:02:45 -07:00

17 lines
187 B
Bash
Executable File

#!/bin/sh
cd $(git rev-parse --show-toplevel)
pods='
rabbitmq
mariadb
keystone
glance
nova-controller
'
for pod in $pods; do
kubecfg -c "k8s/pod/${pod}-pod.yaml" create pods
done