8afa729ffb
This is an initial commit of a functional nova chart. It has been tested with the neutron chart using a flat network configuration.
14 lines
452 B
YAML
14 lines
452 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nova-etc
|
|
data:
|
|
nova.conf: |+
|
|
{{ tuple "etc/_nova.conf.tpl" . | include "template" | indent 4 }}
|
|
ceph.client.cinder.keyring.yaml: |+
|
|
{{ tuple "etc/_ceph.client.cinder.keyring.yaml.tpl" . | include "template" | indent 4 }}
|
|
resolv.conf: |+
|
|
{{ tuple "etc/_resolv.conf.tpl" . | include "template" | indent 4 }}
|
|
libvirtd.conf: |+
|
|
{{ tuple "etc/_libvirtd.conf.tpl" . | include "template" | indent 4 }}
|