Skip to content

Commit 0e06198

Browse files
committed
Fix network check for Bifrost
If you disable Bifrost, then don't warn about configuring a network for it. TrivialFix Change-Id: I2fa2d98ac4a4372d009c93963475ca224fde13ba Signed-off-by: Doug Szumski <doug@stackhpc.com>
1 parent 43236f1 commit 0e06198

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ansible/kolla-ansible.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@
120120
- var_name: "kolla_bifrost_network_interface"
121121
description: "Bifrost provisioning network"
122122
network: "{{ provision_oc_net_name }}"
123-
required: True
123+
required: "{{ kolla_enable_bifrost | bool }}"
124124
# Strictly api_interface is not required but kolla-ansible currently
125125
# references it in prechecks.
126126
- var_name: "kolla_api_interface"
127127
description: "Bifrost provisioning network"
128128
network: "{{ provision_oc_net_name }}"
129-
required: True
129+
required: "{{ kolla_enable_bifrost | bool }}"
130130

131131
- import_role:
132132
name: kolla-ansible-host-vars

0 commit comments

Comments
 (0)