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`
9393 magnum_default_worker_flavor_name :
9494 # External network to use for load balancers etc.
9595 magnum_external_net_name :
96- # Octavia provider (e.g. 'ovn')
97- magnum_loadbalancer_provider :
9896 # Optional list of extra labels to add to all generated cluster templates
9997 magnum_template_extra_labels :
10098
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
102107
103108.. code-block :: bash
104109
Original file line number Diff line number Diff line change 1515 kube_dashboard_enabled: "true"
1616 keystone_auth_enabled: "false"
1717 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') }}
1919{% if magnum_template_extra_labels is defined and magnum_template_extra_labels is not none %}
2020 {{ magnum_template_extra_labels | to_nice_yaml | indent(4) -}}
2121{% endif %}
You can’t perform that action at this time.
0 commit comments