7a066f7154
For using 3rd party Octavia providers (such as OVN provider) an octavia-driver-agent container must be running to expose those providers to use. OVN CI job has been extended with deploying Octavia and testing OVN Load Balancer. Closes-Bug: #1903506 Depends-On: https://review.opendev.org/c/openstack/kolla/+/771191 Change-Id: Ibafa8b7307981f2a51e630cc113d18af6162171c
24 lines
713 B
Django/Jinja
24 lines
713 B
Django/Jinja
{
|
|
"command": "octavia-driver-agent --config-file /etc/octavia/octavia.conf",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/octavia.conf",
|
|
"dest": "/etc/octavia/octavia.conf",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
}{% if octavia_policy_file is defined %},
|
|
{
|
|
"source": "{{ container_config_directory }}/{{ octavia_policy_file }}",
|
|
"dest": "/etc/octavia/{{ octavia_policy_file }}",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
}{% endif %}
|
|
],
|
|
"permissions": [
|
|
{
|
|
"path": "/var/run/octavia",
|
|
"owner": "octavia:octavia"
|
|
}
|
|
]
|
|
}
|