80f5cde3c48478e265f399350f4996f64f8055e6
[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 {% if 'sriov' in yaml %}
48         - sriov
49 {% endif %}
50     conf:
51       nova:
52         filter_scheduler:
53           enabled_filters: "RetryFilter, AvailabilityZoneFilter, RamFilter, ComputeFilter, ComputeCapabilitiesFilter, ImagePropertiesFilter, ServerGroupAntiAffinityFilter, ServerGroupAffinityFilter, PciPassthroughFilter, NUMATopologyFilter, DifferentHostFilter, SameHostFilter"
54         libvirt:
55           virt_type: kvm
56         DEFAULT:
57           vcpu_pin_set: {% if 'platform' in yaml and 'vcpu_pin_set' in yaml.platform %}"{{yaml.platform.vcpu_pin_set}}"
58 {% else %}"4-21,26-43,48-65,72-87"
59 {% endif %}
60           vif_plugging_is_fatal: False
61           vif_plugging_timeout: 30
62         pci:
63 {% if 'gpu' in yaml or 'sriov' in yaml %}
64           alias: |
65   {% if 'sriov' in yaml and 'alias' in yaml.sriov %}
66   {% for alias in yaml.sriov.alias %}
67             '{"name": "{{alias.name}}", "vendor_id": "{{alias.vendor_id}}", "product_id": "{{alias.product_id}}", "capability_type": "pci", "device_type": "type-PCI", "numa_policy": "required"}'
68   {% endfor %}
69   {% endif %}
70   {% if 'gpu' in yaml and 'alias' in yaml.gpu %}
71   {% for alias in yaml.gpu.alias %}
72             '{"name":"{{alias.name}}", "vendor_id":"{{alias.vendor_id}}", "product_id":"{{alias.product_id}}", "device_type":"type-PCI"}'
73   {% endfor %}
74   {% endif %}
75           passthrough_whitelist: |
76             [
77   {%- if 'sriov' in yaml and 'nets' in yaml.sriov %}
78   {% for sriovnet in yaml.sriov.nets %}
79     {%- for vf in sriovnet.whitelists -%}{"address":"{{vf["address"]}}","physical_network":"{{sriovnet.physical}}"}{{',' if not loop.last else ''}}{% endfor %}{{',' if not loop.last else '' -}}
80   {%- endfor -%}
81   {%- if 'gpu' in yaml and 'sriov' in yaml %},{% endif -%}
82   {%- for alias in yaml.gpu.alias %}{"vendor_id": "{{alias.vendor_id}}", "product_id": "{{alias.product_id}}"}{{',' if not loop.last else ''}}{% endfor -%}
83             ]
84   {% endif %}
85 {% endif %}
86 ...