diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2019-02-26 18:09:14 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2019-02-28 13:16:43 +0400 |
commit | 4e4b7928649577beed448004acb9ed5f33700301 (patch) | |
tree | 9e88bcd185094c95d3c75ae63d424717a8edc327 /mcp/patches/salt-formula-nova | |
parent | ac56d7b14f46b05f497b3dca4b6a4b0bfedd83e2 (diff) |
Tune up nova/neutron intervals
Also re-align resources for virtual scenarios.
Change-Id: Id0d55407fd5b1720a24e30c364219f8b08e89d06
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/patches/salt-formula-nova')
-rw-r--r-- | mcp/patches/salt-formula-nova/0001-Support-rocky-version.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/mcp/patches/salt-formula-nova/0001-Support-rocky-version.patch b/mcp/patches/salt-formula-nova/0001-Support-rocky-version.patch deleted file mode 100644 index f9b08f7a9..000000000 --- a/mcp/patches/salt-formula-nova/0001-Support-rocky-version.patch +++ /dev/null @@ -1,45 +0,0 @@ -:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -: Copyright (c) 2018 Mirantis Inc., Enea AB and others. -: -: All rights reserved. This program and the accompanying materials -: are made available under the terms of the Apache License, Version 2.0 -: which accompanies this distribution, and is available at -: http://www.apache.org/licenses/LICENSE-2.0 -:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -From: Michael Polenchuk <mpolenchuk@mirantis.com> -Date: Wed, 28 Nov 2018 17:55:45 +0400 -Subject: [PATCH] Support rocky version - -Change-Id: Ie7061f1b68ef3b203d4e169b60996a97ee6778c6 -Related-Prod: PROD-23724 - -diff --git a/nova/map.jinja b/nova/map.jinja -index 370f517..d977d8d 100644 ---- a/nova/map.jinja -+++ b/nova/map.jinja -@@ -18,12 +18,14 @@ - } %} - - {%- if grains.os_family == "Debian" %} --{%- set pkgs_list = [ 'nova-common', 'nova-consoleproxy', 'novnc', 'nova-api', 'nova-conductor', 'nova-consoleauth', 'nova-doc', 'nova-scheduler', 'python-novaclient', 'python-memcache', 'gettext-base', 'python-pycadf'] %} -+{%- set pkgs_list = ['nova-api', 'nova-conductor', 'nova-consoleauth', 'nova-scheduler', 'python-novaclient'] %} - {%- set services_list = ['nova-conductor', 'nova-api', 'nova-consoleauth', 'nova-scheduler', 'nova-novncproxy'] %} --{%- if pillar.nova.controller is defined and pillar.nova.controller.get('version',{}) in ["juno", "kilo", "liberty", "mitaka"] %} -+{%- set ost_version = pillar.nova.controller is defined and pillar.nova.controller.get('version', None) %} -+{%- if ost_version in ['juno', 'kilo', 'liberty', 'mitaka'] %} - {%- do pkgs_list.append('nova-cert') %} - {%- do services_list.append('nova-cert') %} - {%- endif %} -+{%- do pkgs_list.append('nova-novncproxy' if ost_version in ['rocky'] else 'nova-consoleproxy') %} - {%- endif %} - - {%- if grains.os_family == "RedHat" %} -@@ -174,7 +176,7 @@ BaseDefaults: {{ default_params }} - Debian: - pkgs: - - nova-common -- - nova-compute-kvm -+ - nova-compute - - python-novaclient - - pm-utils - - sysfsutils |