Merge "Allow disabling nova-ssh"
This commit is contained in:
commit
8ce120159c
@ -493,6 +493,7 @@ enable_neutron_segments: "no"
|
||||
enable_neutron_sfc: "no"
|
||||
enable_neutron_infoblox_ipam_agent: "no"
|
||||
enable_nova_serialconsole_proxy: "no"
|
||||
enable_nova_ssh: "yes"
|
||||
enable_octavia: "no"
|
||||
enable_opendaylight: "no"
|
||||
enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' | bool }}"
|
||||
|
@ -26,7 +26,7 @@ nova_services:
|
||||
container_name: "nova_ssh"
|
||||
group: "compute"
|
||||
image: "{{ nova_ssh_image_full }}"
|
||||
enabled: True
|
||||
enabled: "{{ enable_nova_ssh | bool }}"
|
||||
volumes:
|
||||
- "{{ node_config_directory }}/nova-ssh/:{{ container_config_directory }}/:ro"
|
||||
- "/etc/localtime:/etc/localtime:ro"
|
||||
|
@ -247,6 +247,7 @@ kolla_internal_vip_address: "10.10.10.254"
|
||||
#enable_neutron_sfc: "no"
|
||||
#enable_nova_fake: "no"
|
||||
#enable_nova_serialconsole_proxy: "no"
|
||||
#enable_nova_ssh: "yes"
|
||||
#enable_octavia: "no"
|
||||
#enable_opendaylight: "no"
|
||||
#enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' }}"
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Add a configuration option `enable_nova_ssh` to allow disabling the
|
||||
service. This is useful when an operator is not supporting cold-migration
|
||||
and does not want to manage additional SSH keys.
|
Loading…
x
Reference in New Issue
Block a user