blob: eb9a3dc7d0f498c7a93bd5c2fef8017cb9787271 [file] [log] [blame]
Dennis Dmitriev26b94a22018-07-19 16:12:22 +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-genie' %}
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-genie.yaml' %}
9{%- set ENVIRONMENT_CONTEXT_NAMES = ['environment-context-k8s-genie.yaml'] %}
10
11{% import 'shared-salt.yaml' as SHARED with context %}
12
13{{ SHARED.MACRO_INSTALL_PACKAGES_ON_NODES(HOSTNAME_CFG01) }}
14
15{{ SHARED.MACRO_INSTALL_FORMULAS('\*') }}
16
17{{ SHARED.MACRO_GENERATE_COOKIECUTTER_MODEL() }}
18
19{{ SHARED.MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() }}
20
21#- description: "Workaround for computes"
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) }}