Petr Michalec | 3541082 | 2018-08-09 10:23:09 +0200 | [diff] [blame] | 1 | --- |
| 2 | fixes: |
| 3 | - | |
| 4 | When defining interfaces for kvm-quemu VMs use sorted list of interfaces |
| 5 | to avoid random NIC assignment/name. |
| 6 | |
| 7 | Fixes https://mirantis.jira.com/browse/PROD-21976 |
| 8 | |
| 9 | Required model change on existing deployments with MCP >= 2018.7.0, update |
| 10 | `salt:virt:nic` profiles to use list with `- name:` key instead of dict: |
| 11 | |
| 12 | .. code-block:: yaml |
| 13 | |
| 14 | salt: |
| 15 | virt: |
| 16 | nic: |
| 17 | default: |
| 18 | eth1: |
| 19 | bridge: br-mgm |
| 20 | eth0: |
| 21 | bridge: br-ctl |
| 22 | control: |
| 23 | - name: eth1 |
| 24 | bridge: br_mgm |
| 25 | model: virtio |
| 26 | - name: eth2 |
| 27 | bridge: br_ctl |
| 28 | model: virtio |
| 29 | - name: eth3 |
| 30 | bridge: br_proxy |
| 31 | model: virtio |
| 32 | |