
nova-libvirt was not in the list of started services, so its port was not available prior to this change. Change-Id: I59cedb68ff87a9a54e93c85e60f748e5cc161a4c
22 lines
286 B
Bash
Executable File
22 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(git rev-parse --show-toplevel)
|
|
|
|
services='
|
|
glance-api
|
|
glance-registry
|
|
keystone-admin
|
|
keystone-public
|
|
mariadb
|
|
nova-api
|
|
nova-ec2-api
|
|
nova-libvirt
|
|
nova-metadata-api
|
|
rabbitmq
|
|
'
|
|
|
|
for svc in $services; do
|
|
kubecfg -c "k8s/service/${svc}-service.yaml" create services
|
|
done
|
|
|