blob: ceace31e478424198019c758b838d8f65fe10215 [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) }}
14- description: Re-install all the fromulas
15 cmd: |
16 set -e;
17 apt-get install -y salt-formula-*
18 node_name: {{ HOSTNAME_CFG01 }}
19 retry: {count: 1, delay: 1}
20 skip_fail: false
21
22{{ SHARED.MACRO_GENERATE_COOKIECUTTER_MODEL() }}
23
24{{ SHARED.MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() }}
25
26- description: "Workaround for combined roles: remove unnecessary classes"
27 cmd: |
28 set -e;
29 . /root/venv-reclass-tools/bin/activate;
30 # Workaround for compute nodes. Auto-registration for compute nodes cannot be used without external address inventory
31 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;
32 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;
33
34 node_name: {{ HOSTNAME_CFG01 }}
35 retry: {count: 1, delay: 5}
36 skip_fail: false
37
38{{ SHARED.MACRO_GENERATE_INVENTORY(RERUN_SALTMASTER_STATE=true) }}