summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundle_tpl/nova-compute.yaml
blob: 73591b6b32188e27facc37c55bc681660773563e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
    nova-compute:
      charm: "./{{ ubuntu.release }}/nova-compute"
{% if os.hyperconverged %}
{% if os.ha.mode == 'ha' %}
      num_units: {{ opnfv.units - 2 }}
{% else %}
      num_units: {{ opnfv.units - 1 }}
{% endif %}
{% else %}
{% if os.ha.mode == 'ha' %}
      num_units: {{ opnfv.units - 3 }}
{% else %}
      num_units: {{ opnfv.units - 1 }}
{% endif %}
{% endif %}
      bindings:
        "": *oam-space
        internal: *internal-space
      options:
        openstack-origin: *openstack-origin
{% if os.git_repo.origin_git %}
        openstack-origin-git: "{{ os.git_repo.branch }}"
{% endif %}
        enable-live-migration: True
        enable-resize: True
        migration-auth-type: ssh
{% if os.network.ipv6 %}
        prefer-ipv6: {{ os.network.ipv6 }}
{% endif %}
{% if opnfv.storage_dict.ceph is defined %}
        ceph-osd-replication-count: {{ unit_ceph_qty() }}
{% endif %}
{% if os.beta.huge_pages %}
        hugepages: "2048"
{% endif %}
{% if os.beta.cpu_pin %}
        vcpu-pin-set: "{{ os.beta.cpu_pin_set }}"
{% endif %}
{% if os.lxd %}
        virt-type: lxd
{% else %}
        virt-type: kvm
{% endif %}
      to:
{% if os.hyperconverged %}
{% if os.ha.mode == 'ha' %}
{% for unit_id in range(2, opnfv.units) %}
        - "nodes/{{ unit_id }}"
{% endfor %}
{% else %}
{% for unit_id in range(1, opnfv.units) %}
        - "nodes/{{ unit_id }}"
{% endfor %}
{% endif %}
{% else %}
{% if os.ha.mode == 'ha' %}
{% for unit_id in range(0, opnfv.units - 3) %}
        - "nodes-compute/{{ unit_id }}"
{% endfor %}
{% else %}
{% for unit_id in range(0, opnfv.units - 1) %}
        - "nodes-compute/{{ unit_id }}"
{% endfor %}
{% endif %}
{% endif %}