Merge "Add a replicationController for nova-compute so it runs on each minion"

This commit is contained in:
Jenkins 2014-10-13 15:18:27 +00:00 committed by Gerrit Code Review
commit a0794220f9

View File

@ -0,0 +1,66 @@
{
"apiVersion": "v1beta1",
"desiredState": {
"podTemplate": {
"desiredState": {
"manifest": {
"containers": [
{
"name": "nova-compute",
"image": "kollaglue/fedora-rdo-nova-compute",
"env": [
{
"name": "DB_ROOT_PASSWORD",
"value": "password"
},
{
"name": "NOVA_DB_PASSWORD",
"value": "novadbpassword"
},
{
"name": "KEYSTONE_ADMIN_TOKEN",
"value": "ADMINTOKEN"
}
]
},
{
"name": "nova-libvirt",
"image": "kollaglue/fedora-rdo-nova-libvirt",
"ports": [
{"containerPort": 16509}
],
"env": [
{
"name": "DB_ROOT_PASSWORD",
"value": "password"
},
{
"name": "NOVA_DB_PASSWORD",
"value": "novadbpassword"
},
{
"name": "KEYSTONE_ADMIN_TOKEN",
"value": "ADMINTOKEN"
}
]
},
],
"id": "nova-compute-controller",
"version": "v1beta1"
}
},
"labels": {
"name": "nova-compute"
}
},
"replicaSelector": {
"name": "nova-compute"
},
"replicas": 2
},
"id": "nova-compute-controller",
"kind": "ReplicationController",
"labels": {
"name": "nova-compute"
}
}