Merge "neutron: add ssh key"

This commit is contained in:
Zuul 2022-03-30 13:38:32 +00:00 committed by Gerrit Code Review
commit 087d0e1d60
7 changed files with 42 additions and 1 deletions

View File

@ -142,6 +142,18 @@
notify:
- "Restart {{ item.key }} container"
- name: Copying over ssh key
become: true
vars:
neutron_server: "{{ neutron_services['neutron-server'] }}"
template:
src: "id_rsa"
dest: "{{ node_config_directory }}/neutron-server/id_rsa"
mode: 0600
when:
- neutron_server.enabled | bool
- neutron_server.host_in_groups | bool
- name: Copying over ml2_conf.ini
become: true
vars:

View File

@ -0,0 +1 @@
{{ neutron_ssh_key.private_key }}

View File

@ -38,6 +38,12 @@
"dest": "/etc/neutron/plugins/ml2/ml2_conf.ini",
"owner": "neutron",
"perm": "0600"
},
{
"source": "{{ container_config_directory }}/id_rsa",
"dest": "/var/lib/neutron/.ssh/id_rsa",
"owner": "neutron",
"perm": "0600"
}
],
"permissions": [

View File

@ -164,3 +164,14 @@ via ``neutron_mlnx_physnet_mappings`` which is presented to
neutron_mlnx_physnet_mappings:
ibphysnet: "ib0"
SSH authentication in external systems (switches)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Kolla, by default, generates and copies an ssh key to the ``neutron_server``
container (under ``/var/lib/neutron/.ssh/id_rsa``) which can be used for
authentication in external systems (e.g. in ``networking-generic-switch`` or
``networking-ansible`` managed switches).
You can set ``neutron_ssh_key`` variable in ``passwords.yml`` to control the
used key.

View File

@ -199,6 +199,10 @@ octavia_amp_ssh_key:
private_key:
public_key:
neutron_ssh_key:
private_key:
public_key:
####################
# Gnocchi options
####################

View File

@ -116,7 +116,8 @@ def main():
# SSH key pair
ssh_keys = ['kolla_ssh_key', 'nova_ssh_key',
'keystone_ssh_key', 'bifrost_ssh_key', 'octavia_amp_ssh_key']
'keystone_ssh_key', 'bifrost_ssh_key', 'octavia_amp_ssh_key',
'neutron_ssh_key']
# If these keys are None, leave them as None
blank_keys = ['docker_registry_password']

View File

@ -0,0 +1,6 @@
---
features:
- |
Adds an SSH key for Neutron server which can be used for passwordless
public key authentication in external systems (e.g. for
``networking-generic-switch`` managed switches).