e84c968ed2
This patch updates the octavia controller deployment to use the latest octavia certificate configuration guide [1]. The dual CA changes were introduced in Train. [1] https://docs.openstack.org/octavia/latest/admin/guides/certificates.html Change-Id: If89ec0d631568db70690f1a69d00115c59abe678 Closes-Bug: #1862133
36 lines
1.2 KiB
Django/Jinja
36 lines
1.2 KiB
Django/Jinja
{
|
|
"command": "octavia-worker --config-file /etc/octavia/octavia.conf",
|
|
"config_files": [
|
|
{
|
|
"source": "{{ container_config_directory }}/octavia.conf",
|
|
"dest": "/etc/octavia/octavia.conf",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/client.cert-and-key.pem",
|
|
"dest": "/etc/octavia/certs/client.cert-and-key.pem",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/client_ca.cert.pem",
|
|
"dest": "/etc/octavia/certs/client_ca.cert.pem",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/server_ca.cert.pem",
|
|
"dest": "/etc/octavia/certs/server_ca.cert.pem",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
},
|
|
{
|
|
"source": "{{ container_config_directory }}/server_ca.key.pem",
|
|
"dest": "/etc/octavia/certs/server_ca.key.pem",
|
|
"owner": "octavia",
|
|
"perm": "0600"
|
|
}
|
|
]
|
|
}
|