
replicaton controllers are now automatically started by the start scripts and killed by the stop script Change-Id: I15d15ff9b1b640bd0f8cace872a827ecfe476ca3
14 lines
203 B
Bash
Executable File
14 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(git rev-parse --show-toplevel)
|
|
|
|
services='
|
|
nova-compute
|
|
'
|
|
|
|
for svc in $services; do
|
|
kubecfg -c "k8s/replication/${svc}-replication.yaml" create \
|
|
replicationControllers
|
|
done
|
|
|