Skip to content

Commit

Permalink
Ensure vault set as early as possible with ml2-ovn
Browse files Browse the repository at this point in the history
This is to ensure that any overlays that depend on
it get to use it since they will execute in any order.
  • Loading branch information
dosaboy committed Jul 24, 2024
1 parent b4bf147 commit b25aa4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions openstack/pipeline/02configure
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ MOD_OVERLAYS+=(
# Default to OVN for > Train
if has_min_release ussuri && ! has_opt --ml2-ovs; then
set -- $@ --ml2-ovn && cache $@
# The following will be set anyway by ml2-ovn overlay but we do here since
# there will be other overlays that depend on it and if they are executed
# first (before it is set) they will not use it.
set -- $@ --vault && cache $@
fi

if is_neutron_gateway_required; then
Expand Down

0 comments on commit b25aa4d

Please sign in to comment.