Merge "Remove DANM TenantConfig creation"
[ta/caas-danm.git] / ansible / roles / danm_setup / templates / danm_tenant_config.yaml.j2
diff --git a/ansible/roles/danm_setup/templates/danm_tenant_config.yaml.j2 b/ansible/roles/danm_setup/templates/danm_tenant_config.yaml.j2
deleted file mode 100644 (file)
index 97f8888..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-#jinja2: lstrip_blocks: True
-{#
-Copyright 2019 Nokia
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-#}
-{%- macro make_host_devices(devices, provider_network) %}
-  {% for device in devices %}
-- name: {{ device }}
-  {{ make_vni_config(provider_network) | indent(2) }}
-  {% endfor %}
-{% endmacro -%}
-
-{%- macro make_vni_config(provider_network) %}
-  {% set vlan_ranges = provider_network.get('vlan_ranges', '') %}
-  {% set vxlan_ranges = provider_network.get('vxlan_ranges', '') %}
-  {% if vlan_ranges %}
-vniType: vlan
-vniRange: {{ vlan_ranges | replace(':', '-') }}
-  {% elif vxlan_ranges %}
-vniType: vxlan
-vniRange: {{ vxlan_ranges | replace(':', '-') }}
-  {% endif %}
-{% endmacro -%}
-
----
-apiVersion: danm.k8s.io/v1
-kind: TenantConfig
-metadata:
-  name: danm-tenant-config
-hostDevices:
-{% if all_attached_caas_provider_network_profiles %}
-  {% for profile_name in all_attached_caas_provider_network_profiles %}
-    {% set profile = network_profiles[profile_name] %}
-    {% set caas_provider_networks = profile.get('provider_network_interfaces', {}) | filter_provider_networks_by_type('caas') %}
-    {% set caas_sriov_provider_networks = profile.get('sriov_provider_networks', {}) | filter_provider_networks_by_type('caas') %}
-    {% for tenant_network in caas.get('tenant_networks', []) %}
-      {% if tenant_network in caas_provider_networks | get_provider_networks %}
-  {{ make_host_devices(caas_provider_networks.keys(), networking['provider_networks'][tenant_network]) | indent(2) -}}
-      {% elif tenant_network in caas_sriov_provider_networks %}
-        {% set sriov_interaces = caas_sriov_provider_networks | extract_sriov_provider_network_interfaces %}
-        {% set sriov_device_pools = sriov_interaces | map('regex_replace', '(.*)', 'nokia.k8s.io/sriov_\\1') | list %}
-  {{ make_host_devices(sriov_device_pools, networking['provider_networks'][tenant_network]) | indent(2) -}}
-      {% endif %}
-    {% endfor %}
-  {% endfor %}
-{%- else %}
- []
-{% endif %}
-networkIds:
-  flannel: flannel