updated templates and scripts for Airship 1.3
[yaml_builds.git] / site_type / sriov-a13 / templates / software / charts / osh / openstack-compute-kit / nova.j2
1 ---
2 ##############################################################################
3 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.        #
4 #                                                                            #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may    #
6 # not use this file except in compliance with the License.                   #
7 #                                                                            #
8 # You may obtain a copy of the License at                                    #
9 #       http://www.apache.org/licenses/LICENSE-2.0                           #
10 #                                                                            #
11 # Unless required by applicable law or agreed to in writing, software        #
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT  #
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.           #
14 # See the License for the specific language governing permissions and        #
15 # limitations under the License.                                             #
16 ##############################################################################
17 # This file defines hardware-specific settings for nova. If you use the same
18 # hardware profile as this environment, you should not need to change this file.
19 # Otherwise, you should review the settings here and adjust for your hardware.
20 # In particular:
21 # 1. vcpu_pin_set will change if the number of logical CPUs on the hardware
22 #    changes.
23 # 2. pci alias / passthrough_whitelist could change if the NIC type or NIC
24 #    slotting changes.
25 # TODO: Should move to global layer and become tied to the hardware profile
26
27 schema: armada/Chart/v1
28 metadata:
29   schema: metadata/Document/v1
30   name: nova
31   labels:
32     component: nova
33   layeringDefinition:
34     abstract: false
35     layer: site
36     parentSelector:
37       name: nova-global
38     actions:
39       - method: merge
40         path: .
41   storagePolicy: cleartext
42 data:
43   values:
44     network:
45       backend:
46         - openvswitch
47         - sriov
48     conf:
49       nova:
50         filter_scheduler:
51           enabled_filters: "RetryFilter, AvailabilityZoneFilter, RamFilter, ComputeFilter, ComputeCapabilitiesFilter, ImagePropertiesFilter, ServerGroupAntiAffinityFilter, ServerGroupAffinityFilter, PciPassthroughFilter, NUMATopologyFilter, DifferentHostFilter, SameHostFilter"
52         libvirt:
53           virt_type: kvm
54         DEFAULT:
55           vcpu_pin_set: {% if 'platform' in yaml and 'vcpu_pin_set' in yaml.platform %}"{{yaml.platform.vcpu_pin_set}}"
56 {% else %}"4-21,26-43,48-65,72-87"
57 {% endif %}
58           vif_plugging_is_fatal: False
59           vif_plugging_timeout: 30
60         pci:
61 {% if 'gpu' in yaml and 'alias' in yaml.gpu %}
62 {% for alias in yaml.gpu.alias %}
63           alias: '{ "name":"{{alias.name}}", "vendor_id":"{{alias.vendor_id}}", "product_id":"{{alias.product_id}}", "device_type":"type-PCI" }'
64           passthrough_whitelist: '{"vendor_id": "{{alias.vendor_id}}", "product_id": "{{alias.product_id}}"}'
65 {% endfor %}
66 {% endif %}
67 {% if 'sriov' in yaml and 'alias' in yaml.sriov %}
68 {% for alias in yaml.sriov.alias %}
69           alias: '{"name": "{{alias.name}}", "vendor_id": "{{alias.vendor_id}}", "product_id": "{{alias.product_id}}", "capability_type": "pci", "device_type": "type-PCI", "numa_policy": "required"}`'
70 {% endfor %}
71 {% endif %}
72 {% if 'sriov' in yaml and 'nets' in yaml.sriov %}
73 {% for sriovnet in yaml.sriov.nets %}
74           passthrough_whitelist: |
75             [{% for vf in sriovnet.whitelists -%}{"address":"{{vf["address"]}}","physical_network":"{{sriovnet.physical}}"}{{',' if not loop.last else ''}}{% endfor %}]
76 {% endfor %}
77 {% endif %}
78 ...