JOID: move os-public-hostname from overrides to endpoints config 35/17235/1
authorDavid Blaisonneau <david.blaisonneau@orange.com>
Wed, 20 Jul 2016 14:49:51 +0000 (16:49 +0200)
committerDavid Blaisonneau <david.blaisonneau@orange.com>
Wed, 20 Jul 2016 14:55:37 +0000 (16:55 +0200)
this change is needed for congress. It will works on admin interfaces.

Signed-off-by: David Blaisonneau <david.blaisonneau@orange.com>
ci/bundle_tpl/ceilometer.yaml
ci/bundle_tpl/cinder.yaml
ci/bundle_tpl/glance.yaml
ci/bundle_tpl/heat.yaml
ci/bundle_tpl/keystone.yaml
ci/bundle_tpl/neutron-api.yaml
ci/bundle_tpl/nova-cloud-controller.yaml
ci/bundle_tpl/phase2-overrides.yaml

index 125e838..ef5d9b4 100644 (file)
@@ -8,6 +8,9 @@
       options:
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.ceilometer }}
+{% endif %}
+{% if os.beta.public_api %}
+    os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index d28ecd7..4c1b862 100644 (file)
@@ -2,6 +2,9 @@
       charm: "local:{{ ubuntu.release }}/cinder"
       num_units: {{ unit_qty() }}
       options:
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
+{% endif %}
         block-device: None
         glance-api-version: 2
 {% if os.ha.mode == 'ha' %}
index f4fcbf0..8499932 100644 (file)
@@ -4,6 +4,9 @@
       options:
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.glance }}
+{% endif %}
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index ba97fb6..5f8be0a 100644 (file)
@@ -4,6 +4,9 @@
       options:
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.heat }}
+{% endif %}
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index 147bdc3..24f5b10 100644 (file)
@@ -6,6 +6,9 @@
         admin-token: {{ os.admin.name }}
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.keystone }}
+{% endif %}
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index 88990cb..053b6ff 100644 (file)
@@ -14,6 +14,9 @@
 {% endif %}
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.neutron }}
+{% endif %}
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index 1dfc47e..bdf1090 100644 (file)
@@ -11,6 +11,9 @@
         network-manager: Neutron
 {% if os.ha.mode == 'ha' %}
         vip: {{ opnfv.vip.nova }}
+{% endif %}
+{% if os.beta.public_api %}
+        os-public-hostname: api.{{ opnfv.domain }}
 {% endif %}
       to:
 {% for unit_id in to_select() %}
index 218df21..dd44ab5 100644 (file)
@@ -25,7 +25,4 @@
     keystone-admin-role: {{ os.admin.role }}
 {% if os.beta.public_api %}
     use-internal-endpoints: true
-{% if opnfv.domain is defined %}
-    os-public-hostname: api.{{ opnfv.domain }}
-{% endif %}
 {% endif %}