
Previously, the nova-network service was not fully functional. This patch adds multi-interface support to the nova-network container. The eth0 configuration is moved to a bridge (br100 per nova defaults), and configures eth0 and eth1 as bridged interfaces. eth0 is used for the nova-flat network and eth1 for foating-ip's. This model is identical to typical bare-metal nova-network deployments. The patch depends on the following patch to kube-heat template that provides multiple interfaces per minion: https://github.com/larsks/heat-kubernetes/pull/8 Rebased. Fixed merge conflict with k8s/pod/nova-compute-pod.yaml Change-Id: Ieb59f397981a226555ce55ca621ef578b987e3c6
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
desiredState:
|
|
manifest:
|
|
containers:
|
|
- name: nova-compute
|
|
env:
|
|
- name: DB_ROOT_PASSWORD
|
|
value: password
|
|
- name: NOVA_DB_PASSWORD
|
|
value: novadbpassword
|
|
- name: KEYSTONE_ADMIN_TOKEN
|
|
value: ADMINTOKEN
|
|
image: kollaglue/fedora-rdo-nova-compute
|
|
privileged: true
|
|
- name: nova-network
|
|
env:
|
|
- name: DB_ROOT_PASSWORD
|
|
value: password
|
|
- name: NOVA_DB_PASSWORD
|
|
value: novadbpassword
|
|
- name: KEYSTONE_ADMIN_TOKEN
|
|
value: ADMINTOKEN
|
|
- name: CONFIG_NETWORK
|
|
value: true
|
|
image: kollaglue/fedora-rdo-nova-network
|
|
privileged: true
|
|
- name: ceilometer-compute
|
|
env:
|
|
- name: DB_ROOT_PASSWORD
|
|
value: password
|
|
- name: CEILOMETER_DB_PASSWORD
|
|
value: ceilometerdbpassword
|
|
- name: KEYSTONE_ADMIN_TOKEN
|
|
value: ADMINTOKEN
|
|
image: kollaglue/fedora-rdo-ceilometer-compute
|
|
id: nova-1
|
|
version: v1beta1
|
|
id: nova-compute
|
|
labels:
|
|
name: nova-compute
|