blob: 776a51642ff0ee6264391720c51ccc3d5c69afc6 [file] [log] [blame]
Dennis Dmitriev0f624a82018-06-11 12:57:13 +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 = 'cookied-cicd-k8s-calico' %}
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', LAB_CONFIG_NAME) %}
7# Path to the context files used to render Cluster and Environment models
8{%- set CLUSTER_CONTEXT_NAME = 'cookiecutter-context-k8s.yaml' %}
9{%- set ENVIRONMENT_CONTEXT_NAMES = ['environment-context-k8s.yaml'] %}
10
11{% import 'shared-salt.yaml' as SHARED with context %}
12
13{{ SHARED.MACRO_INSTALL_PACKAGES_ON_NODES(HOSTNAME_CFG01) }}
Dennis Dmitriev0f624a82018-06-11 12:57:13 +030014
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030015{{ SHARED.MACRO_INSTALL_FORMULAS('\*') }}
Tatyana Leontovich2e892752018-07-05 19:56:10 +030016
Dennis Dmitriev0f624a82018-06-11 12:57:13 +030017{{ SHARED.MACRO_GENERATE_COOKIECUTTER_MODEL() }}
18
19{{ SHARED.MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() }}
20
Dennis Dmitriev0f624a82018-06-11 12:57:13 +030021- description: "Workaround for combined roles: remove unnecessary classes"
22 cmd: |
23 set -e;
24 . /root/venv-reclass-tools/bin/activate;
25 # Workaround for compute nodes. Auto-registration for compute nodes cannot be used without external address inventory
26 reclass-tools add-key parameters._param.kubernetes_compute_node01_address {{ SHARED.IPV4_NET_CONTROL_PREFIX }}.101 /srv/salt/reclass/classes/cluster/{{ LAB_CONFIG_NAME }}/kubernetes/init.yml;
27 reclass-tools add-key parameters._param.kubernetes_compute_node02_address {{ SHARED.IPV4_NET_CONTROL_PREFIX }}.102 /srv/salt/reclass/classes/cluster/{{ LAB_CONFIG_NAME }}/kubernetes/init.yml;
28
29 node_name: {{ HOSTNAME_CFG01 }}
30 retry: {count: 1, delay: 5}
31 skip_fail: false
32
33{{ SHARED.MACRO_GENERATE_INVENTORY(RERUN_SALTMASTER_STATE=true) }}