From 3fca345f54d3c6f7c43b3279961c9f5e04c86abb Mon Sep 17 00:00:00 2001 From: James Denton Date: Fri, 23 Dec 2022 03:54:46 +0000 Subject: [PATCH] Set defaults for octavia-ovn-provider driver This patch is the first of two required to implement the octavia-ovn-provider driver for Octavia. By setting a default for neutron_bin we can use the path in logic for installing the ovn provider driver. Change-Id: Ia700de4e03f8f238bfa5ee6183cb07aa2fdd83fe --- playbooks/defaults/distro_install.yml | 1 + playbooks/defaults/source_install.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/playbooks/defaults/distro_install.yml b/playbooks/defaults/distro_install.yml index 36f4b0584c..719642dd77 100644 --- a/playbooks/defaults/distro_install.yml +++ b/playbooks/defaults/distro_install.yml @@ -27,6 +27,7 @@ keystone_bin: /usr/bin cinder_bin: /usr/bin nova_bin: /usr/bin +neutron_bin: /usr/bin ## Delegate all database setup tasks to the utility host, and use the utility venv python interpreter openstack_db_setup_host: "{{ groups['utility_all'][0] }}" diff --git a/playbooks/defaults/source_install.yml b/playbooks/defaults/source_install.yml index ca62659fe1..e417c6ac1e 100644 --- a/playbooks/defaults/source_install.yml +++ b/playbooks/defaults/source_install.yml @@ -16,6 +16,7 @@ cinder_bin: "/openstack/venvs/cinder-{{ venv_tag }}/bin" keystone_bin: "/openstack/venvs/keystone-{{ venv_tag }}/bin" nova_bin: "/openstack/venvs/nova-{{ venv_tag }}/bin" +neutron_bin: "/openstack/venvs/neutron-{{ venv_tag }}/bin" # URL for the frozen internal openstack repo. repo_release_path: "{{ openstack_repo_url }}/os-releases/{{ openstack_release }}/{{ os_distro_version }}"