File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -93,12 +93,17 @@ variables in `etc/openstack-config.yml`
93
93
magnum_default_worker_flavor_name :
94
94
# External network to use for load balancers etc.
95
95
magnum_external_net_name :
96
- # Octavia provider (e.g. 'ovn')
97
- magnum_loadbalancer_provider :
98
96
# Optional list of extra labels to add to all generated cluster templates
99
97
magnum_template_extra_labels :
100
98
101
- then run the provided playbook with
99
+ The load balancer provider defaults to OVN. This can be changed to Amphora, but you
100
+ should only do this if OVN load balancers are unavailable.
101
+
102
+ .. code-block :: yaml
103
+
104
+ magnum_loadbalancer_provider : amphora
105
+
106
+ Then run the provided playbook with
102
107
103
108
.. code-block :: bash
104
109
Original file line number Diff line number Diff line change 15
15
kube_dashboard_enabled: "true"
16
16
keystone_auth_enabled: "false"
17
17
capi_helm_chart_version: "{{ capi_helm_chart_release_data.json.tag_name }}"
18
- octavia_provider: {{ magnum_loadbalancer_provider }}
18
+ octavia_provider: {{ magnum_loadbalancer_provider | default('ovn') }}
19
19
{% if magnum_template_extra_labels is defined and magnum_template_extra_labels is not none %}
20
20
{{ magnum_template_extra_labels | to_nice_yaml | indent(4) -}}
21
21
{% endif %}
You can’t perform that action at this time.
0 commit comments