blob: eefc22ddfc1c5d1efde459f68d2bac6a039f79b4 [file] [log] [blame]
Tatyana Leontovich1e063f02019-05-08 15:06:33 +03001{% from 'cookied-model-generator/underlay.yaml' import HOSTNAME_CFG01 with context %}
2{% from 'cookied-model-generator/underlay.yaml' import DOMAIN_NAME with context %}
3
4{% set LAB_CONFIG_NAME = 'heat-cicd-queens-dvr-sl' %}
5# Name of the context file (without extension, that is fixed .yaml) used to render the Environment model
6{% set ENVIRONMENT_MODEL_INVENTORY_NAME = os_env('ENVIRONMENT_MODEL_INVENTORY_NAME','heat-cicd-queens-dvr-sl') %}
7# Path to the context files used to render Cluster and Environment models
8{%- set CLUSTER_CONTEXT_NAME = 'salt-context-cookiecutter.yaml' %}
9{%- set ENVIRONMENT_CONTEXT_NAMES = ['salt-context-environment.yaml', 'salt-context-cookiecutter.yaml'] %}
10
11{% import 'shared-salt.yaml' as SHARED with context %}
12
13{{ SHARED.MACRO_INSTALL_PACKAGES_ON_NODES(HOSTNAME_CFG01) }}
14
Tatyana Leontovich3fb53412019-05-24 00:46:12 +030015{{ SHARED.MACRO_INSTALL_FORMULAS_FROM_UPDATE() }}
16
Tatyana Leontovich1e063f02019-05-08 15:06:33 +030017{{ SHARED.MACRO_INSTALL_FORMULAS('\*') }}
18
19{{ SHARED.MACRO_GENERATE_COOKIECUTTER_MODEL() }}
20
21{{ SHARED.MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() }}
22
23{{ SHARED.MACRO_GENERATE_INVENTORY(RERUN_SALTMASTER_STATE=true) }}
Tatyana Leontovich242ae6c2019-05-17 17:21:10 +030024
25- description: "Add cpu_mode"
26 cmd: |
27 set -e;
28 set -x;
29 . /root/venv-reclass-tools/bin/activate;
30 reclass-tools add-key parameters.nova.compute.cpu_mode custom /srv/salt/reclass/classes/cluster/{{ LAB_CONFIG_NAME }}/openstack/compute/init.yml;
31 reclass-tools add-key parameters.nova.compute.libvirt.cpu_model kvm64 /srv/salt/reclass/classes/cluster/{{ LAB_CONFIG_NAME }}/openstack/compute/init.yml;
32 node_name: {{ HOSTNAME_CFG01 }}
33 retry: {count: 1, delay: 5}
34 skip_fail: false