diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-05-25 17:10:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-05-25 17:10:21 +0000 |
commit | f63c58f98b6ddbf64f300ed0495be3dd88e242e0 (patch) | |
tree | f53f4eace401904f42a964824a8866f3f7e15c13 /mcp/reclass | |
parent | e6685124258ed9d1237acf9d8b383c07f1397f93 (diff) | |
parent | 480a5696b52818a4a954b6cdaa4298b1c5835ff9 (diff) |
Merge "AArch64: Switch back to hwe-16.04 kernel" into stable/fraser
Diffstat (limited to 'mcp/reclass')
-rw-r--r-- | mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml.j2 (renamed from mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml) | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml b/mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml.j2 index 6662f1fad..153b493ce 100644 --- a/mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml +++ b/mcp/reclass/classes/cluster/mcp-pike-odl-ha/infra/maas.yml.j2 @@ -5,10 +5,18 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +{%- set cluster_arch = [] %} +{%- for node in conf.nodes %} + {%- if node.node.arch not in cluster_arch %} + {%- do cluster_arch.append(node.node.arch) %} + {%- endif %} +{%- endfor %} --- classes: - cluster.mcp-pike-common-ha.infra.maas - cluster.mcp-pike-odl-ha.infra +{%- if 'aarch64' not in cluster_arch %} parameters: _param: hwe_kernel: 'ga-16.04' +{%- endif %} |