|  | {% from 'cookied-model-generator/underlay.yaml' import HOSTNAME_CFG01 with context %} | 
|  | {% from 'cookied-model-generator/underlay.yaml' import DOMAIN_NAME with context %} | 
|  |  | 
|  | {% set SALT_MODELS_REPOSITORY = os_env('SALT_MODELS_REPOSITORY','https://gerrit.mcp.mirantis.net/salt-models/mcp-baremetal-lab') %} | 
|  | # Other salt model repository parameters see in shared-salt.yaml | 
|  | {% set LAB_CONFIG_NAME = 'cookied-bm-mcp-ovs-dpdk' %} | 
|  | {% set SALT_VERSION = os_env('SALT_VERSION', '2017.7') %} | 
|  | # Name of the context file (without extension, that is fixed .yaml) used to render the Environment model | 
|  | {% set ENVIRONMENT_MODEL_INVENTORY_NAME = os_env('ENVIRONMENT_MODEL_INVENTORY_NAME','cookied-bm-mcp-ovs-dpdk') %} | 
|  | # Path to the context files used to render Cluster and Environment models | 
|  | {%- set CLUSTER_CONTEXT_NAME = 'salt-context-cookiecutter-openstack_ovs_dpdk.yaml' %} | 
|  | {%- set ENVIRONMENT_CONTEXT_NAMES = ['salt-context-vcp-environment.yaml', 'salt-context-environment.yaml'] %} | 
|  | {%- set CONTROL_VLAN = os_env('CONTROL_VLAN', '2416') %} | 
|  | {%- set TENANT_VLAN = os_env('TENANT_VLAN', '2417') %} | 
|  | {% set REPOSITORY_SUITE = os_env('REPOSITORY_SUITE', 'testing') %} | 
|  | {% set SALT_REPOSITORY = os_env('SALT_REPOSITORY', "deb [arch=amd64] http://apt.mirantis.com/${DISTRIB_CODENAME}/salt/" + SALT_VERSION  + REPOSITORY_SUITE + " main") %} | 
|  | {# set SALT_REPOSITORY = os_env('SALT_REPOSITORY', "deb [arch=amd64] http://mirror.mirantis.com/" + REPOSITORY_SUITE+ "/saltstack-2016.3/${DISTRIB_CODENAME} ${DISTRIB_CODENAME} main") #} | 
|  | {% import 'shared-salt.yaml' as SHARED with context %} | 
|  |  | 
|  | {{ SHARED.MACRO_GENERATE_COOKIECUTTER_MODEL(CONTROL_VLAN=CONTROL_VLAN, TENANT_VLAN=TENANT_VLAN) }} | 
|  |  | 
|  | {{ SHARED.MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() }} | 
|  |  | 
|  | {{ SHARED.MACRO_INSTALL_PACKAGES_ON_NODES(HOSTNAME_CFG01) }} | 
|  |  | 
|  | - description: Re-install all the fromulas | 
|  | cmd: | | 
|  | set -e; | 
|  | apt-get install -y salt-formula-* | 
|  | node_name: {{ HOSTNAME_CFG01 }} | 
|  | retry: {count: 1, delay: 1} | 
|  | skip_fail: false | 
|  |  | 
|  | - description: Sync formulas to service | 
|  | cmd: | | 
|  | set -e; | 
|  | RECLASS_ROOT=${RECLASS_ROOT:-/srv/salt/reclass/}; | 
|  | FORMULAS_PATH=${FORMULAS_PATH:-/usr/share/salt-formulas}; | 
|  | [ ! -d ${RECLASS_ROOT}/classes/service ] && mkdir -p ${RECLASS_ROOT}/classes/service; | 
|  | for formula_service in $(ls /usr/share/salt-formulas/reclass/service/); do | 
|  | #Since some salt formula names contain "-" and in symlinks they should contain "_" adding replacement; | 
|  | formula_service=${formula_service//-/$'_'}; | 
|  | if [ ! -L "${RECLASS_ROOT}/classes/service/${formula_service}" ]; then | 
|  | ln -sf ${FORMULAS_PATH}/reclass/service/${formula_service} ${RECLASS_ROOT}/classes/service/${formula_service}; | 
|  | fi; | 
|  | done | 
|  | node_name: {{ HOSTNAME_CFG01 }} | 
|  | retry: {count: 1, delay: 1} | 
|  | skip_fail: false | 
|  |  | 
|  | - description: "Workaround for rack01 compute generator" | 
|  | cmd: | | 
|  | set -e; | 
|  | . /root/venv-reclass-tools/bin/activate; | 
|  | # Remove rack01 key | 
|  | reclass-tools del-key parameters.reclass.storage.node.openstack_compute_rack01 /srv/salt/reclass/classes/cluster/{{ SHARED.CLUSTER_NAME }}/infra/config.yml; | 
|  | # Add openstack_compute_node definition from system | 
|  | reclass-tools add-key 'classes' 'system.reclass.storage.system.openstack_compute_multi' /srv/salt/reclass/classes/cluster/{{ SHARED.CLUSTER_NAME }}/infra/config.yml --merge; | 
|  | node_name: {{ HOSTNAME_CFG01 }} | 
|  | retry: {count: 1, delay: 10} | 
|  | skip_fail: false | 
|  |  | 
|  |  | 
|  | - description: Temporary workaround for removing cinder-volume from CTL nodes | 
|  | cmd: | | 
|  | sed -i 's/\-\ system\.cinder\.volume\.single//g' /srv/salt/reclass/classes/cluster/{{ SHARED.CLUSTER_NAME }}/openstack/control.yml; | 
|  | sed -i 's/\-\ system\.cinder\.volume\.notification\.messagingv2//g' /srv/salt/reclass/classes/cluster/{{ SHARED.CLUSTER_NAME }}/openstack/control.yml; | 
|  | node_name: {{ HOSTNAME_CFG01 }} | 
|  | retry: {count: 1, delay: 5} | 
|  | skip_fail: true | 
|  |  | 
|  | {{ SHARED.MACRO_GENERATE_INVENTORY(RERUN_SALTMASTER_STATE=true) }} | 
|  |  |