Merge "Add support for encrypting cinder api."
This commit is contained in:
commit
fb00819e86
@ -16,12 +16,14 @@ cinder_services:
|
|||||||
external: false
|
external: false
|
||||||
port: "{{ cinder_api_port }}"
|
port: "{{ cinder_api_port }}"
|
||||||
listen_port: "{{ cinder_api_listen_port }}"
|
listen_port: "{{ cinder_api_listen_port }}"
|
||||||
|
tls_backend: "{{ cinder_enable_tls_backend }}"
|
||||||
cinder_api_external:
|
cinder_api_external:
|
||||||
enabled: "{{ enable_cinder }}"
|
enabled: "{{ enable_cinder }}"
|
||||||
mode: "http"
|
mode: "http"
|
||||||
external: true
|
external: true
|
||||||
port: "{{ cinder_api_port }}"
|
port: "{{ cinder_api_port }}"
|
||||||
listen_port: "{{ cinder_api_listen_port }}"
|
listen_port: "{{ cinder_api_listen_port }}"
|
||||||
|
tls_backend: "{{ cinder_enable_tls_backend }}"
|
||||||
cinder-scheduler:
|
cinder-scheduler:
|
||||||
container_name: cinder_scheduler
|
container_name: cinder_scheduler
|
||||||
group: cinder-scheduler
|
group: cinder-scheduler
|
||||||
@ -237,3 +239,8 @@ cinder_ks_users:
|
|||||||
user: "{{ cinder_keystone_user }}"
|
user: "{{ cinder_keystone_user }}"
|
||||||
password: "{{ cinder_keystone_password }}"
|
password: "{{ cinder_keystone_password }}"
|
||||||
role: "admin"
|
role: "admin"
|
||||||
|
|
||||||
|
####################
|
||||||
|
# TLS
|
||||||
|
####################
|
||||||
|
cinder_enable_tls_backend: "{{ kolla_enable_tls_backend }}"
|
||||||
|
@ -20,8 +20,20 @@
|
|||||||
"dest": "/etc/cinder/{{ cinder_policy_file }}",
|
"dest": "/etc/cinder/{{ cinder_policy_file }}",
|
||||||
"owner": "cinder",
|
"owner": "cinder",
|
||||||
"perm": "0600"
|
"perm": "0600"
|
||||||
}{% endif %}
|
}{% endif %}{% if cinder_enable_tls_backend | bool %},
|
||||||
],
|
{
|
||||||
|
"source": "{{ container_config_directory }}/cinder-cert.pem",
|
||||||
|
"dest": "/etc/cinder/certs/cinder-cert.pem",
|
||||||
|
"owner": "cinder",
|
||||||
|
"perm": "0600"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "{{ container_config_directory }}/cinder-key.pem",
|
||||||
|
"dest": "/etc/cinder/certs/cinder-key.pem",
|
||||||
|
"owner": "cinder",
|
||||||
|
"perm": "0600"
|
||||||
|
}
|
||||||
|
{% endif %}],
|
||||||
"permissions": [
|
"permissions": [
|
||||||
{
|
{
|
||||||
"path": "/var/lib/cinder",
|
"path": "/var/lib/cinder",
|
||||||
|
@ -3,6 +3,13 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
{% set python_path = '/var/lib/kolla/venv/lib/python' + distro_python_version + '/site-packages' %}
|
{% set python_path = '/var/lib/kolla/venv/lib/python' + distro_python_version + '/site-packages' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if cinder_enable_tls_backend | bool %}
|
||||||
|
{% if kolla_base_distro in ['centos'] %}
|
||||||
|
LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so
|
||||||
|
{% else %}
|
||||||
|
LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
Listen {{ api_interface_address | put_address_in_context('url') }}:{{ cinder_api_listen_port }}
|
Listen {{ api_interface_address | put_address_in_context('url') }}:{{ cinder_api_listen_port }}
|
||||||
|
|
||||||
ServerSignature Off
|
ServerSignature Off
|
||||||
@ -25,4 +32,9 @@ LogLevel info
|
|||||||
ErrorLog /var/log/kolla/cinder/cinder-api.log
|
ErrorLog /var/log/kolla/cinder/cinder-api.log
|
||||||
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
||||||
CustomLog /var/log/kolla/cinder/cinder-api-access.log logformat
|
CustomLog /var/log/kolla/cinder/cinder-api-access.log logformat
|
||||||
|
{% if cinder_enable_tls_backend | bool %}
|
||||||
|
SSLEngine On
|
||||||
|
SSLCertificateFile /etc/cinder/certs/cinder-cert.pem
|
||||||
|
SSLCertificateKeyFile /etc/cinder/certs/cinder-key.pem
|
||||||
|
{% endif %}
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
features:
|
features:
|
||||||
- |
|
- |
|
||||||
Added configuration options to enable backend TLS encryption from HAProxy
|
Added configuration options to enable backend TLS encryption from HAProxy
|
||||||
to the Keystone service. When used in conjunction with enabling TLS for
|
to the Keystone and cinder service. When used in conjunction with enabling
|
||||||
service API endpoints, network communcation will be encrypted end to end,
|
TLS for service API endpoints, network communcation will be encrypted end
|
||||||
from client through HAProxy to the Keystone service.
|
to end, from client through HAProxy to the backend service.
|
||||||
|
Loading…
Reference in New Issue
Block a user