Make neutron ovs agent work with python3
Currently neutron_ovs_agent_launcher.sh unconditionally runs neutron with the default python from /usr/bin/python, so it is impossible to force it to use python3 if /usr/bin/python points to python2. Make the python interpreter overridable, by reusing the existing Heat parameter "PythonInterpreter" and honouring its value in neutron_ovs_agent_launcher.sh Change-Id: I43c17de81603bd41e6503dd01d6f4ef452b7d533 Co-Authored-By: Michele Baldessari <michele@acksyn.org>
This commit is contained in:
parent
d747625b82
commit
de35766338
@ -53,6 +53,10 @@ parameters:
|
||||
type: boolean
|
||||
default: true
|
||||
description: Whether containerized puppet executions use modules from the baremetal host. Defaults to true. Can be set to false to consume puppet modules from containers directly.
|
||||
PythonInterpreter:
|
||||
type: string
|
||||
description: The python interpreter to use for python and ansible actions
|
||||
default: /usr/bin/python
|
||||
|
||||
conditions:
|
||||
|
||||
@ -124,11 +128,15 @@ outputs:
|
||||
docker_config_scripts:
|
||||
neutron_ovs_agent_launcher.sh:
|
||||
mode: "0755"
|
||||
content: |
|
||||
#!/bin/bash
|
||||
set -xe
|
||||
/usr/bin/python -m neutron.cmd.destroy_patch_ports --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini --config-dir /etc/neutron/conf.d/common --config-dir /etc/neutron/conf.d/neutron-openvswitch-agent
|
||||
/usr/bin/neutron-openvswitch-agent --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini --config-dir /etc/neutron/conf.d/common --log-file=/var/log/neutron/openvswitch-agent.log
|
||||
content:
|
||||
str_replace:
|
||||
template: |
|
||||
#!/bin/bash
|
||||
set -xe
|
||||
PYTHON -m neutron.cmd.destroy_patch_ports --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini --config-dir /etc/neutron/conf.d/common --config-dir /etc/neutron/conf.d/neutron-openvswitch-agent
|
||||
/usr/bin/neutron-openvswitch-agent --config-file /usr/share/neutron/neutron-dist.conf --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/openvswitch_agent.ini --config-dir /etc/neutron/conf.d/common --log-file=/var/log/neutron/openvswitch-agent.log
|
||||
params:
|
||||
PYTHON: {get_param: PythonInterpreter}
|
||||
docker_config:
|
||||
step_3:
|
||||
neutron_ovs_bridge:
|
||||
|
Loading…
Reference in New Issue
Block a user