u/fuel: Bump & rebase for MCP repos on HA
[armband.git] / patches / opnfv-fuel / 0001-salt-formulas-Add-enable-armband-formula.patch
1 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2 : Copyright (c) 2018 Enea AB and others.
3 :
4 : All rights reserved. This program and the accompanying materials
5 : are made available under the terms of the Apache License, Version 2.0
6 : which accompanies this distribution, and is available at
7 : http://www.apache.org/licenses/LICENSE-2.0
8 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
9 From: Guillermo Herrero <Guillermo.Herrero@enea.com>
10 Date: Tue, 25 Jul 2017 00:58:32 +0200
11 Subject: [PATCH] salt-formulas: Add & enable armband formula
12
13 - prereq: install qemu-efi;
14 - prereq: install vgabios;
15 - prereq: fix missing link for vgabios binary blob;
16 - nova patch: Add video type virtio for AArch64 (backport from [1]);
17 - nova patch: libvirt driver: AArch64: ACPI depends on AAVMF;
18 - nova conf: cpu_model=cortex-a57 (only for virtual deploys);
19 - nova conf: virt_type=qemu (only for virtual deploys);
20 - nova compute conf: virt_type=qemu (only for virtual deploys);
21 - nova conf: pointer_model=ps2mouse since AArch64 has no USB tablet;
22
23 [1] https://github.com/openstack/nova/commit/f0f0953
24
25 Signed-off-by: Guillermo Herrero <Guillermo.Herrero@enea.com>
26 Signed-off-by: Charalampos Kominos <Charalampos.Kominos@enea.com>
27 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
28 ---
29  mcp/config/states/openstack_ha                |   1 +
30  mcp/config/states/openstack_noha              |   2 +
31  mcp/config/states/virtual_control_plane       |   1 +
32  .../files/nova-libvirt-aarch64-rollup.diff    | 106 ++++++++++++++++++
33  mcp/salt-formulas/armband/init.sls            |   7 ++
34  mcp/salt-formulas/armband/nova_config.sls     |  35 ++++++
35  mcp/salt-formulas/armband/nova_libvirt.sls    |   7 ++
36  mcp/salt-formulas/armband/qemu_efi.sls        |   2 +
37  mcp/salt-formulas/armband/vgabios.sls         |   7 ++
38  9 files changed, 168 insertions(+)
39  create mode 100644 mcp/salt-formulas/armband/files/nova-libvirt-aarch64-rollup.diff
40  create mode 100644 mcp/salt-formulas/armband/init.sls
41  create mode 100644 mcp/salt-formulas/armband/nova_config.sls
42  create mode 100644 mcp/salt-formulas/armband/nova_libvirt.sls
43  create mode 100644 mcp/salt-formulas/armband/qemu_efi.sls
44  create mode 100644 mcp/salt-formulas/armband/vgabios.sls
45
46 diff --git a/mcp/config/states/openstack_ha b/mcp/config/states/openstack_ha
47 index a30f9af6..600aa76b 100755
48 --- a/mcp/config/states/openstack_ha
49 +++ b/mcp/config/states/openstack_ha
50 @@ -52,6 +52,7 @@ salt -I 'neutron:server' state.sls neutron -b 1
51  salt -I 'neutron:gateway' state.sls neutron.gateway
52
53  salt -I 'nova:compute' state.sls nova
54 +wait_for 5.0 "salt -I 'nova:compute' state.sls armband"
55
56  salt -I 'redis:cluster:role:master' state.sls redis
57  salt -I 'redis:server' state.sls redis
58 diff --git a/mcp/config/states/openstack_noha b/mcp/config/states/openstack_noha
59 index a266989a..77557caa 100755
60 --- a/mcp/config/states/openstack_noha
61 +++ b/mcp/config/states/openstack_noha
62 @@ -55,6 +55,8 @@ salt -I 'ceilometer:agent' state.sls ceilometer
63
64  salt -I 'horizon:server' state.sls horizon
65
66 +salt -I 'nova:compute' state.sls armband
67 +
68  # workaround for the pike horizon is missing css, FUEL-324
69  salt -I 'horizon:server' file.symlink \
70    /var/lib/openstack-dashboard/static \
71 diff --git a/mcp/config/states/virtual_control_plane b/mcp/config/states/virtual_control_plane
72 index c391cfe6..02a813c9 100755
73 --- a/mcp/config/states/virtual_control_plane
74 +++ b/mcp/config/states/virtual_control_plane
75 @@ -27,6 +27,7 @@ if [ "${ERASE_ENV}" -eq 1 ]; then
76  fi
77
78  # KVM libvirt first, VCP deployment
79 +wait_for 5.0 "salt -C 'kvm*' state.sls armband"
80  wait_for 5.0 "salt -C 'kvm*' state.sls libvirt"
81
82  salt -C 'kvm* or cmp*' state.apply salt
83 diff --git a/mcp/salt-formulas/armband/files/nova-libvirt-aarch64-rollup.diff b/mcp/salt-formulas/armband/files/nova-libvirt-aarch64-rollup.diff
84 new file mode 100644
85 index 00000000..c987a4ce
86 --- /dev/null
87 +++ b/mcp/salt-formulas/armband/files/nova-libvirt-aarch64-rollup.diff
88 @@ -0,0 +1,106 @@
89 +From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
90 +Date: Thu, 24 Aug 2017 10:57:28 +0200
91 +Subject: [PATCH] libvirt: AArch64: ACPI depends on AAVMF
92 +
93 +On AArch64, ACPI should be added to domain XML only if guest UEFI
94 +(AAVMF) is also used.
95 +
96 +[ Alexandru.Avadanii@enea.com ]
97 +- pike rebase: minor context adj
98 +
99 +Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
100 +Signed-off-by: Ciprian Barbu <ciprian.barbu@enea.com>
101 +
102 +---
103 +
104 +diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py
105 +--- a/nova/virt/libvirt/driver.py
106 ++++ b/nova/virt/libvirt/driver.py
107 +@@ -4314,7 +4314,10 @@
108 +
109 +         if (virt_type not in ("lxc", "uml", "parallels", "xen") or
110 +                 (virt_type == "xen" and guest.os_type == fields.VMMode.HVM)):
111 +-            guest.features.append(vconfig.LibvirtConfigGuestFeatureACPI())
112 ++            guestarch = libvirt_utils.get_arch(image_meta)
113 ++            if (guestarch not in (fields.Architecture.ARMV7, fields.Architecture.AARCH64) or
114 ++                image_meta.properties.get('hw_firmware_type') == 'uefi'):
115 ++                    guest.features.append(vconfig.LibvirtConfigGuestFeatureACPI())
116 +             guest.features.append(vconfig.LibvirtConfigGuestFeatureAPIC())
117 +
118 +         if (virt_type in ("qemu", "kvm") and
119 +--
120 +
121 +From f0f09530ee9169eb29bc28d4f118676d7dc6640e Mon Sep 17 00:00:00 2001
122 +From: Kevin Zhao <kevin.zhao@arm.com>
123 +Date: Tue, 15 Aug 2017 09:52:09 +0000
124 +Subject: [PATCH] Add video type virtio for AArch64
125 +
126 +Currently only "virtio" type is supported on AArch64, and the
127 +other "virrus", "qxl" and "vga" don't work on AArch64 according to
128 +libvirt upstream:
129 +https://www.redhat.com/archives/libvir-list/2016-September/msg00546.html
130 +Then this patch adds the virtio for AArch64 and tweaks the related test cases.
131 +
132 +Closes-bug: #1710766
133 +
134 +[ Alexandru.Avadanii@enea.com ]
135 +Dropped test changes so it applies cleanly on Newton without more backports.
136 +
137 +Change-Id: Iba8a1e671f2b5759b3d9178aa1871d0cf888b26b
138 +Signed-off-by: Kevin Zhao <kevin.zhao@arm.com>
139 +Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
140 +---
141 +
142 +--- a/nova/virt/libvirt/driver.py
143 ++++ b/nova/virt/libvirt/driver.py
144 +@@ -4342,7 +4342,8 @@ def _check_number_of_serial_console(self, num_ports):
145 +                 allowed=ALLOWED_QEMU_SERIAL_PORTS, virt_type=virt_type)
146 +
147 +     def _add_video_driver(self, guest, image_meta, flavor):
148 +-        VALID_VIDEO_DEVICES = ("vga", "cirrus", "vmvga", "xen", "qxl")
149 ++        VALID_VIDEO_DEVICES = ("vga", "cirrus", "vmvga",
150 ++                               "xen", "qxl", "virtio")
151 +         video = vconfig.LibvirtConfigGuestVideo()
152 +         # NOTE(ldbragst): The following logic sets the video.type
153 +         # depending on supported defaults given the architecture,
154 +@@ -4360,6 +4361,10 @@ def _add_video_driver(self, guest, image_meta, flavor):
155 +             # NOTE(ldbragst): PowerKVM doesn't support 'cirrus' be default
156 +             # so use 'vga' instead when running on Power hardware.
157 +             video.type = 'vga'
158 ++        elif guestarch in (fields.Architecture.AARCH64):
159 ++            # NOTE(kevinz): Only virtio device type is supported by AARCH64
160 ++            # so use 'virtio' instead when running on AArch64 hardware.
161 ++            video.type = 'virtio'
162 +         elif CONF.spice.enabled:
163 +             video.type = 'qxl'
164 +         if image_meta.properties.get('hw_video_model'):
165 +--
166 +
167 +From dbd4c20de002784a4ffc07b173e82dd84a3af01c Mon Sep 17 00:00:00 2001
168 +From: Charalampos Kominos <Charalampos.Kominos@enea.com>
169 +Date: Wed, 2 May 2018 14:20:47 +0200
170 +Subject: [PATCH] Allow libvirt to honor root device naming
171 +
172 +Current behaviour in upstream nova is for rootfs to be in /dev/vda
173 +which is the default behaviour when using virtio driver. However when
174 +other devices are requested either by glance or by CLI, nova ignores
175 +that naming and still tries to attach to vda which fails.
176 +
177 +Manually applied in https://review.openstack.org/#/c/214314/
178 +
179 +JIRA: ARMBAND-376
180 +
181 +Signed-off-by: Charalampos Kominos <charalampos.kominos@enea.com>
182 +---
183 +
184 +--- a/nova/virt/libvirt/driver.py
185 ++++ b/nova/virt/libvirt/driver.py
186 +@@ -8257,6 +8257,8 @@
187 +                     "Ignoring supplied device name: %(device_name)s. "
188 +                     "Libvirt can't honour user-supplied dev names",
189 +                     {'device_name': bdm.device_name}, instance=instance)
190 ++                if instance.root_device_name == bdm.device_name:
191 ++                   instance.root_device_name = None
192 +                 bdm.device_name = None
193 +         block_device_info = driver.get_block_device_info(instance,
194 +                                                          block_device_mapping)
195 diff --git a/mcp/salt-formulas/armband/init.sls b/mcp/salt-formulas/armband/init.sls
196 new file mode 100644
197 index 00000000..8a8cf2ab
198 --- /dev/null
199 +++ b/mcp/salt-formulas/armband/init.sls
200 @@ -0,0 +1,7 @@
201 +include:
202 + - armband.qemu_efi
203 + - armband.vgabios
204 + {%- if salt['pkg.version']('python-nova') %}
205 + - armband.nova_libvirt
206 + - armband.nova_config
207 + {%- endif %}
208 diff --git a/mcp/salt-formulas/armband/nova_config.sls b/mcp/salt-formulas/armband/nova_config.sls
209 new file mode 100644
210 index 00000000..31fa031a
211 --- /dev/null
212 +++ b/mcp/salt-formulas/armband/nova_config.sls
213 @@ -0,0 +1,35 @@
214 +{% if grains['virtual'] == 'kvm' %}
215 +nova_virt_type:
216 +  file.replace:
217 +    - name: "/etc/nova/nova.conf"
218 +    - pattern: '^virt_type\s*=.*$'
219 +    - repl: "virt_type = qemu"
220 +nova_compute_virt_type:
221 +  file.replace:
222 +    - name: "/etc/nova/nova-compute.conf"
223 +    - pattern: '^virt_type\s*=.*$'
224 +    - repl: "virt_type = qemu"
225 +{% endif %}
226 +nova_pointer_model:
227 +  file.replace:
228 +    - name: "/etc/nova/nova.conf"
229 +    - pattern: '^#pointer_model\s*=.*$'
230 +    - repl: "pointer_model = ps2mouse"
231 +nova_cpu_mode:
232 +  file.replace:
233 +    - name: "/etc/nova/nova.conf"
234 +    - pattern:  '^cpu_mode\s*=\s*host-passthrough'
235 +    - repl: "cpu_mode = custom"
236 +nova_cpu_model:
237 +  file.replace:
238 +    - name: "/etc/nova/nova.conf"
239 +    - pattern: '^#cpu_model\s*=.*$'
240 +    {% if grains['virtual'] == 'kvm' %}
241 +    - repl: "cpu_model = cortex-a57"
242 +    {% else %}
243 +    - repl: "cpu_model = host"
244 +    {% endif %}
245 +restart_nova-compute:
246 +  cmd:
247 +    - run
248 +    - name: "service nova-compute restart"
249 diff --git a/mcp/salt-formulas/armband/nova_libvirt.sls b/mcp/salt-formulas/armband/nova_libvirt.sls
250 new file mode 100644
251 index 00000000..ff93db80
252 --- /dev/null
253 +++ b/mcp/salt-formulas/armband/nova_libvirt.sls
254 @@ -0,0 +1,7 @@
255 +nova-libvirt-aarch64-rollup:
256 +  file.patch:
257 +  - name: /usr/lib/python2.7/dist-packages
258 +  - source: salt://armband/files/nova-libvirt-aarch64-rollup.diff
259 +  - hash: False
260 +  - options: '-p1'
261 +  - unless: 'test -f /var/cache/salt/minion/files/base/armband/files/nova-libvirt-aarch64-rollup.diff && cd /usr/lib/python2.7/dist-packages && patch -p1 -R --dry-run -r - < /var/cache/salt/minion/files/base/armband/files/nova-libvirt-aarch64-rollup.diff'
262 diff --git a/mcp/salt-formulas/armband/qemu_efi.sls b/mcp/salt-formulas/armband/qemu_efi.sls
263 new file mode 100644
264 index 00000000..c697dae9
265 --- /dev/null
266 +++ b/mcp/salt-formulas/armband/qemu_efi.sls
267 @@ -0,0 +1,2 @@
268 +qemu-efi:
269 +  pkg.installed
270 diff --git a/mcp/salt-formulas/armband/vgabios.sls b/mcp/salt-formulas/armband/vgabios.sls
271 new file mode 100644
272 index 00000000..500c2bcf
273 --- /dev/null
274 +++ b/mcp/salt-formulas/armband/vgabios.sls
275 @@ -0,0 +1,7 @@
276 +vgabios:
277 +  pkg.installed
278 +/usr/share/qemu:
279 +  file.directory
280 +/usr/share/qemu/vgabios-stdvga.bin:
281 +  file.symlink:
282 +    - target: "/usr/share/vgabios/vgabios.bin"