From f0dc5195aa78e26097bcbe4923ab46ddb7c556d7 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Thu, 5 May 2016 10:52:38 -0500 Subject: [PATCH] Enable next gneration instance launch in Horizon Change the horizon defaults to use the next generation instance management panels. This change allows deployers to better manage their instances as well as access to more features/functionality in horizon. Change-Id: I3502b3e7402223b450773f668545bd6b4a8e7671 Signed-off-by: Kevin Carter --- defaults/main.yml | 4 ++-- .../ng-instance-management-f9134fc283aa289c.yaml | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/ng-instance-management-f9134fc283aa289c.yaml diff --git a/defaults/main.yml b/defaults/main.yml index 07a24fc1..52767a07 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -141,8 +141,8 @@ horizon_ssl_no_verify: "{{ (keystone_service_adminuri_insecure | bool or keyston horizon_default_role_name: _member_ ## Launch instance -horizon_launch_instance_legacy: True -horizon_launch_instance_ng: False +horizon_launch_instance_legacy: False +horizon_launch_instance_ng: True ## Neutron features to enable horizon_enable_neutron_lbaas: False diff --git a/releasenotes/notes/ng-instance-management-f9134fc283aa289c.yaml b/releasenotes/notes/ng-instance-management-f9134fc283aa289c.yaml new file mode 100644 index 00000000..9d2ccefe --- /dev/null +++ b/releasenotes/notes/ng-instance-management-f9134fc283aa289c.yaml @@ -0,0 +1,16 @@ +--- +features: + - The horizon next generation instance management panels have been + enabled by default. This changes horizon to use the upstream defaults + instead of the legacy panels. `Documentation can be found here `_. +upgrade: + - | + The default horizon instance launch panels have been changed to the + next generation panels. To enable legacy functionality set the following + options accordingly: + + .. code-block:: yaml + + horizon_launch_instance_legacy: True + horizon_launch_instance_ng: False +