From 9aab7f2859e336594fe299c397660b5b38204e02 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Tue, 29 Jan 2019 18:05:44 +0100 Subject: [deploy] Allow only operating system install Extend one of the existing deployment arguments to allow the installation of only the operating system and infrastructure networks, skipping cloud setup. Change-Id: Ibc5d0f324ed15b66f809839cfce49a0324b6fe4d Signed-off-by: Alexandru Avadanii --- mcp/scripts/xdf_data.sh.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mcp') diff --git a/mcp/scripts/xdf_data.sh.j2 b/mcp/scripts/xdf_data.sh.j2 index e762fe957..4db5593e3 100644 --- a/mcp/scripts/xdf_data.sh.j2 +++ b/mcp/scripts/xdf_data.sh.j2 @@ -12,6 +12,7 @@ # {%- import 'net_map.j2' as nm with context -%} +{%- set cluster_states = conf.cluster.states if conf.MCP_NO_DEPLOY_ENVIRONMENT < 2 else [] -%} {%- set arch = conf[conf.MCP_JUMP_ARCH] -%} {%- set V = conf.virtual -%} {%- do V.nodes.update(arch.default.virtual.nodes) -%} @@ -100,7 +101,7 @@ OPNFV_BRIDGES=( ) export CLUSTER_DOMAIN={{ conf.cluster.domain }} -cluster_states={{ bash_arr(arch.default.cluster.states + conf.cluster.states) }} +cluster_states={{ bash_arr(arch.default.cluster.states + cluster_states) }} virtual_nodes={{ filter_nodes('virtual') }} control_nodes_query={{ filter_nodes(['baremetal', 'virtual'], True, ['control']) }} base_image={{ arch.base_image }} -- cgit 1.2.3-korg