ecae991cca
Organized SysConf Kubernetes and OpenStack content into subdirs and modified index along lines of Planning layout. Signed-off-by: Stone <ronald.stone@windriver.com> Change-Id: Ia17c015b2083a39fcae4ac545fa10cb5445b4cb2
36 lines
938 B
ReStructuredText
36 lines
938 B
ReStructuredText
|
|
.. bbr1591372608382
|
|
.. _using-helm-overrides-to-enable-internal-dns:
|
|
|
|
==============================
|
|
Enable Internal DNS in Neutron
|
|
==============================
|
|
|
|
You can use Helm overrides to enable internal DNS support.
|
|
|
|
.. rubric:: |proc|
|
|
|
|
#. Create a yaml file to enable internal dns resolution for neutron.
|
|
|
|
.. code-block:: none
|
|
|
|
~(keystone_admin)]$ cat > neutron-overrides.yaml <<EOF
|
|
conf:
|
|
neutron:
|
|
DEFAULT:
|
|
dns_domain: example.ca
|
|
plugins:
|
|
ml2_conf:
|
|
ml2:
|
|
extension_drivers:
|
|
- port_security
|
|
- dns
|
|
EOF
|
|
|
|
#. Update the neutron overrides and apply to |prefix|-openstack.
|
|
|
|
.. parsed-literal::
|
|
|
|
~(keystone_admin)]$ system helm-override-update |prefix|-openstack neutron openstack --values neutron-overrides.yaml
|
|
~(keystone_admin)]$ system application-apply |prefix|-openstack
|