
Start all of the nova-controller services and pods with the start-all-pods and start-all-services startup scripts Change-Id: I47fe15d67ef177fbecf342357bff44cf2fdb5d9e
17 lines
187 B
Bash
Executable File
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
|
|
|