blob: cc2d3e6552d2fc75c180c4ebbf1594ea2100bc24 [file] [log] [blame]
Dennis Dmitriev492813e2017-08-09 15:08:58 +03001{# Collection of common macroses shared across different deployments #}
2
Sergii Golovatiuk50f91892017-08-04 18:11:06 +02003{% set SALT_MODELS_BRANCH = os_env('SALT_MODELS_BRANCH','master') %}
4{% set SALT_MODELS_COMMIT = os_env('SALT_MODELS_COMMIT','master') %}
5{# Reference to a patch that should be applied to the model if required, for example: export SALT_MODELS_REF_CHANGE=refs/changes/19/7219/12 #}
6{% set SALT_MODELS_REF_CHANGE = os_env('SALT_MODELS_REF_CHANGE', '') %}
7{# Pin to a specified commit in salt-models/reclass-system #}
Dmitry Tyzhnenko778515f2017-08-25 14:52:54 +03008{% set SALT_MODELS_SYSTEM_REPOSITORY = os_env('SALT_MODELS_SYSTEM_REPOSITORY','https://gerrit.mcp.mirantis.net/salt-models/reclass-system') %}
Sergii Golovatiuk50f91892017-08-04 18:11:06 +02009{% set SALT_MODELS_SYSTEM_COMMIT = os_env('SALT_MODELS_SYSTEM_COMMIT','') %}
Dmitry Tyzhnenko778515f2017-08-25 14:52:54 +030010{% set SALT_MODELS_SYSTEM_REF_CHANGE = os_env('SALT_MODELS_SYSTEM_REF_CHANGE','') %}
Sergii Golovatiuk50f91892017-08-04 18:11:06 +020011
Dennis Dmitriev492813e2017-08-09 15:08:58 +030012{% set REPOSITORY_SUITE = os_env('REPOSITORY_SUITE', 'testing') %}
13
Sergii Golovatiuk50f91892017-08-04 18:11:06 +020014{# Address pools for reclass cluster model are taken in the following order:
15 # 1. environment variables,
16 # 2. config.underlay.address_pools based on fuel-devops address pools
17 # (see generated '.ini' file after underlay is created),
18 # 3. defaults #}
19{% set address_pools = config.underlay.address_pools %}
20{% set IPV4_NET_ADMIN = os_env('IPV4_NET_ADMIN', address_pools.get('admin-pool01', '192.168.10.0/24')) %}
21{% set IPV4_NET_CONTROL = os_env('IPV4_NET_CONTROL', address_pools.get('private-pool01', '172.16.10.0/24')) %}
22{% set IPV4_NET_TENANT = os_env('IPV4_NET_TENANT', address_pools.get('tenant-pool01', '10.1.0.0/24')) %}
23{% set IPV4_NET_EXTERNAL = os_env('IPV4_NET_EXTERNAL', address_pools.get('external-pool01', '10.16.0.0/24')) %}
24{% set IPV4_NET_ADMIN_PREFIX = '.'.join(IPV4_NET_ADMIN.split('.')[0:3]) %}
25{% set IPV4_NET_CONTROL_PREFIX = '.'.join(IPV4_NET_CONTROL.split('.')[0:3]) %}
26{% set IPV4_NET_TENANT_PREFIX = '.'.join(IPV4_NET_TENANT.split('.')[0:3]) %}
27{% set IPV4_NET_EXTERNAL_PREFIX = '.'.join(IPV4_NET_EXTERNAL.split('.')[0:3]) %}
28
Victor Ryzhenkin4e077ad2017-08-10 13:42:11 +040029{# Format for formula replacement:
30 # space separated string:
31 # export SALT_FORMULAS_REFS='apache:refs/changes/xxxx kubernetes:refs/changes/xxxx' #}
32
33{% set SALT_FORMULAS_REFS = os_env('SALT_FORMULAS_REFS', '') %}
34{% set SALT_FORMULAS_REPO = os_env('SALT_FORMULAS_REPO', 'https://gerrit.mcp.mirantis.net/salt-formulas') %}
35
Dennis Dmitriev492813e2017-08-09 15:08:58 +030036
37{%- macro MACRO_INSTALL_SALT_MASTER() %}
38{######################################}
39- description: Installing salt master on cfg01
40 cmd: eatmydata apt-get install -y reclass git salt-master
41 node_name: {{ HOSTNAME_CFG01 }}
42 retry: {count: 1, delay: 1}
43 skip_fail: false
44
45- description: Configure salt-master on cfg01
46 cmd: |
47 cat << 'EOF' >> /etc/salt/master.d/master.conf
48 file_roots:
49 base:
50 - /usr/share/salt-formulas/env
51 pillar_opts: False
52 open_mode: True
53 reclass: &reclass
54 storage_type: yaml_fs
55 inventory_base_uri: /srv/salt/reclass
56 ext_pillar:
57 - reclass: *reclass
58 master_tops:
59 reclass: *reclass
60 EOF
61 node_name: {{ HOSTNAME_CFG01 }}
62 retry: {count: 1, delay: 1}
63 skip_fail: false
64
65- description: Configure GIT settings and certificates
Dennis Dmitriev3e731a42017-08-30 17:12:59 +030066 cmd: |
67 set -e;
68 touch /root/.git_trusted_certs.pem;
69 for server in github.com; do \
70 openssl s_client -showcerts -connect $server:443 </dev/null \
71 | openssl x509 -outform PEM \
Dennis Dmitriev492813e2017-08-09 15:08:58 +030072 >> /root/.git_trusted_certs.pem;
73 done;
74 HOME=/root git config --global http.sslCAInfo /root/.git_trusted_certs.pem;
75 HOME=/root git config --global user.email "tcp-qa@example.com";
76 HOME=/root git config --global user.name "TCP QA";
77 node_name: {{ HOSTNAME_CFG01 }}
78 retry: {count: 1, delay: 1}
79 skip_fail: false
80{%- endmacro %}
81
82
83{%- macro MACRO_CLONE_RECLASS_MODELS(IS_CONTRAIL_LAB=false) %}
84{############################################################}
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +030085{# Creates a 'cluster' model from cookiecutter-templates and 'environment' model from uploaded template #}
86
Dennis Dmitriev492813e2017-08-09 15:08:58 +030087- description: Clone reclass models with submodules
88 cmd: |
Dennis Dmitriev3e731a42017-08-30 17:12:59 +030089 set -e;
Sergii Golovatiuk50f91892017-08-04 18:11:06 +020090 ssh-keyscan -H github.com >> ~/.ssh/known_hosts;
Tatyana Leontovich44162732017-08-28 12:36:00 +030091 export GIT_SSL_NO_VERIFY=true; git clone -b {{ SALT_MODELS_BRANCH }} --recurse-submodules {{ SALT_MODELS_REPOSITORY }} /srv/salt/reclass;
Sergii Golovatiuk50f91892017-08-04 18:11:06 +020092 pushd /srv/salt/reclass && \
93 {%- if SALT_MODELS_REF_CHANGE != '' %}
94 {%- for item in SALT_MODELS_REF_CHANGE.split(" ") %}
95 git fetch {{ SALT_MODELS_REPOSITORY }} {{ item }} && git cherry-pick FETCH_HEAD && \
96 {%- endfor %}
97 {%- elif SALT_MODELS_COMMIT != 'master' %}
98 git checkout {{ SALT_MODELS_COMMIT }} && \
99 {%- endif %}
100 {%- if SALT_MODELS_SYSTEM_COMMIT != '' %}
101 pushd classes/system/ && \
102 git checkout {{ SALT_MODELS_SYSTEM_COMMIT }} && \
103 popd && \
Dmitry Tyzhnenko778515f2017-08-25 14:52:54 +0300104 {%- elif SALT_MODELS_SYSTEM_REF_CHANGE != '' -%}
105 pushd classes/system/ && \
106 {%- for item in SALT_MODELS_SYSTEM_REF_CHANGE.split(" ") %}
107 git fetch {{ SALT_MODELS_SYSTEM_REPOSITORY }} {{ item }} && git cherry-pick FETCH_HEAD && \
108 {%- endfor %}
109 popd && \
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200110 {%- else %}
111 git submodule update --init --recursive && \
112 {%- endif %}
113 popd;
114 mkdir -p /srv/salt/reclass/classes/service;
Dennis Dmitrieva14f5562017-10-02 12:59:53 +0300115 rm -rf /srv/salt/reclass/nodes/ # For backward compatibility. New cfg node will be regenerated here
Dennis Dmitrievb2e78be2017-09-26 23:25:24 +0300116 mkdir -p /srv/salt/reclass/nodes/_generated/;
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200117
118 # Replace firstly to an intermediate value to avoid intersection between
119 # already replaced and replacing networks.
120 # For example, if generated IPV4_NET_ADMIN_PREFIX=10.16.0 , then there is a risk of replacing twice:
121 # 192.168.10 -> 10.16.0 (generated network for admin)
122 # 10.16.0 -> <external network>
123 # So let's replace constant networks to the keywords, and then keywords to the desired networks.
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300124 export REPLACE_DIRS="/srv/salt/reclass/classes/ /srv/salt/reclass/nodes/"
125 find ${REPLACE_DIRS} -type f -exec sed -i 's/192\.168\.10\./==IPV4_NET_ADMIN_PREFIX==/g' {} +
126 find ${REPLACE_DIRS} -type f -exec sed -i 's/172\.16\.10\./==IPV4_NET_CONTROL_PREFIX==/g' {} +
127 find ${REPLACE_DIRS} -type f -exec sed -i 's/10\.1\.0\./==IPV4_NET_TENANT_PREFIX==/g' {} +
128 find ${REPLACE_DIRS} -type f -exec sed -i 's/10\.16\.0\./==IPV4_NET_EXTERNAL_PREFIX==/g' {} +
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200129
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300130 find ${REPLACE_DIRS} -type f -exec sed -i 's/==IPV4_NET_ADMIN_PREFIX==/{{ IPV4_NET_ADMIN_PREFIX }}./g' {} +
131 find ${REPLACE_DIRS} -type f -exec sed -i 's/==IPV4_NET_CONTROL_PREFIX==/{{ IPV4_NET_CONTROL_PREFIX }}./g' {} +
132 find ${REPLACE_DIRS} -type f -exec sed -i 's/==IPV4_NET_TENANT_PREFIX==/{{ IPV4_NET_TENANT_PREFIX }}./g' {} +
133 find ${REPLACE_DIRS} -type f -exec sed -i 's/==IPV4_NET_EXTERNAL_PREFIX==/{{ IPV4_NET_EXTERNAL_PREFIX }}./g' {} +
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200134
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300135 find ${REPLACE_DIRS} -type f -exec sed -i 's/apt_mk_version:.*/apt_mk_version: {{ REPOSITORY_SUITE }}/g' {} +
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200136
Dmitry Tyzhnenko0fcafda2017-10-11 14:10:38 +0300137 # Workaround for PROD-14756: all roles must use service.keepalived.cluster.single with the default 'VIP' instance"
138 find /srv/salt/reclass/classes/cluster/ -type f -exec sed -i 's/system.keepalived.*/service.keepalived.cluster.single/g' {} +
139 find /srv/salt/reclass/classes/system/ -type f -exec sed -i 's/system.keepalived.*/service.keepalived.cluster.single/g' {} +
140
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300141 {%- if IS_CONTRAIL_LAB %}
142 # vSRX IPs for tcp-qa images have 172.16.10.90 hardcoded
Dennis Dmitriev9d9ba9f2017-09-13 17:34:03 +0300143 find ${REPLACE_DIRS} -type f -exec sed -i 's/opencontrail_router01_address:.*/opencontrail_router01_address: 172.16.10.90/g' {} +
Tatyana Leontovich3424bf62017-09-15 12:13:54 +0300144 find ${REPLACE_DIRS} -type f -exec sed -i 's/infra_config_deploy_address: 1.*/infra_config_deploy_address: {{ IPV4_NET_ADMIN_PREFIX }}.15/g' {} +
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300145 {%- endif %}
146
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200147 # Disable checkouting the model from remote repository
Dennis Dmitrievb2e78be2017-09-26 23:25:24 +0300148 cat << 'EOF' >> /srv/salt/reclass/nodes/_generated/{{ HOSTNAME_CFG01 }}.yml
149 classes:
150 - cluster.{{ LAB_CONFIG_NAME }}.infra.config
151 parameters:
152 _param:
153 linux_system_codename: xenial
154 reclass_data_revision: master
155 linux:
156 system:
157 name: cfg01
158 domain: {{ DOMAIN_NAME }}
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200159 reclass:
160 storage:
161 data_source:
162 engine: local
163 EOF
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300164
165 # Show the changes to the console
166 cd /srv/salt/reclass/; git diff
167 node_name: {{ HOSTNAME_CFG01 }}
168 retry: {count: 1, delay: 1}
169 skip_fail: false
170{%- endmacro %}
171
172
sgudz8c888ec2017-10-02 15:29:23 +0300173{%- macro MACRO_GENERATE_COOKIECUTTER_MODEL(IS_CONTRAIL_LAB=false, CONTROL_VLAN=None, TENANT_VLAN=None) %}
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300174{###################################################################}
Dennis Dmitriev1c1352a2017-09-28 21:45:27 +0300175{%- set CLUSTER_CONTEXT_PATH = '/tmp/' + CLUSTER_CONTEXT_NAME %}
Dennis Dmitrievccdc87a2017-09-28 17:43:54 +0300176- description: "[EXPERIMENTAL] Upload cookiecutter-templates context to {{ HOSTNAME_CFG01 }}"
177 upload:
178 local_path: {{ config.salt_deploy.templates_dir }}{{ LAB_CONFIG_NAME }}/
179 local_filename: {{ CLUSTER_CONTEXT_NAME }}
Dennis Dmitriev1c1352a2017-09-28 21:45:27 +0300180 remote_path: /tmp/
Dennis Dmitrievccdc87a2017-09-28 17:43:54 +0300181 node_name: {{ HOSTNAME_CFG01 }}
182
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300183- description: Create cluster model from cookiecutter templates
184 cmd: |
185 set -e;
186 pip install cookiecutter
187 export GIT_SSL_NO_VERIFY=true; git clone https://gerrit.mcp.mirantis.net/mk/cookiecutter-templates /tmp/cookiecutter-templates
188 mkdir -p /srv/salt/reclass/classes/cluster/
189 mkdir -p /srv/salt/reclass/classes/system/
190 mkdir -p /srv/salt/reclass/classes/service/
Dennis Dmitrieva14f5562017-10-02 12:59:53 +0300191 rm -rf /srv/salt/reclass/nodes/ # For backward compatibility. New cfg node will be regenerated here
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300192 mkdir -p /srv/salt/reclass/nodes/_generated
193
194 # Override some context parameters
195 sed -i 's/cluster_name:.*/cluster_name: {{ LAB_CONFIG_NAME }}/g' {{ CLUSTER_CONTEXT_PATH }}
196 sed -i 's/cluster_domain:.*/cluster_domain: {{ DOMAIN_NAME }}/g' {{ CLUSTER_CONTEXT_PATH }}
sgudz8c888ec2017-10-02 15:29:23 +0300197 {%- if CONTROL_VLAN %}
198 sed -i 's/control_vlan:.*/control_vlan: {{ CONTROL_VLAN }}/g' {{ CLUSTER_CONTEXT_PATH }}
199 {%- endif %}
200 {%- if TENANT_VLAN %}
201 sed -i 's/tenant_vlan:.*/tenant_vlan: {{ TENANT_VLAN }}/g' {{ CLUSTER_CONTEXT_PATH }}
202 {%- endif %}
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300203
204 # Temporary workaround (with hardcoded address .90 -> .15) of bug https://mirantis.jira.com/browse/PROD-14377
sgudz8c888ec2017-10-02 15:29:23 +0300205 # sed -i 's/salt_master_address:.*/salt_master_address: {{ IPV4_NET_CONTROL_PREFIX }}.15/g' {{ CLUSTER_CONTEXT_PATH }}
206 # sed -i 's/salt_master_management_address:.*/salt_master_management_address: {{ IPV4_NET_ADMIN_PREFIX }}.15/g' {{ CLUSTER_CONTEXT_PATH }}
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300207
208 # Replace firstly to an intermediate value to avoid intersection between
209 # already replaced and replacing networks.
210 # For example, if generated IPV4_NET_ADMIN_PREFIX=10.16.0 , then there is a risk of replacing twice:
211 # 192.168.10 -> 10.16.0 (generated network for admin)
212 # 10.16.0 -> <external network>
213 # So let's replace constant networks to the keywords, and then keywords to the desired networks.
214 sed -i 's/10\.167\.5/==IPV4_NET_ADMIN_PREFIX==/g' {{ CLUSTER_CONTEXT_PATH }}
215 sed -i 's/10\.167\.4/==IPV4_NET_CONTROL_PREFIX==/g' {{ CLUSTER_CONTEXT_PATH }}
216 sed -i 's/10\.167\.6/==IPV4_NET_TENANT_PREFIX==/g' {{ CLUSTER_CONTEXT_PATH }}
217 sed -i 's/172\.17\.16\./==IPV4_NET_EXTERNAL_PREFIX==/g' {{ CLUSTER_CONTEXT_PATH }}
218
Dennis Dmitriev39e64bd2017-09-21 22:37:40 +0300219 sed -i 's/==IPV4_NET_ADMIN_PREFIX==/{{ IPV4_NET_ADMIN_PREFIX }}/g' {{ CLUSTER_CONTEXT_PATH }}
220 sed -i 's/==IPV4_NET_CONTROL_PREFIX==/{{ IPV4_NET_CONTROL_PREFIX }}/g' {{ CLUSTER_CONTEXT_PATH }}
221 sed -i 's/==IPV4_NET_TENANT_PREFIX==/{{ IPV4_NET_TENANT_PREFIX }}/g' {{ CLUSTER_CONTEXT_PATH }}
222 sed -i 's/==IPV4_NET_EXTERNAL_PREFIX==/{{ IPV4_NET_EXTERNAL_PREFIX }}./g' {{ CLUSTER_CONTEXT_PATH }}
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300223
224 for i in $(ls /tmp/cookiecutter-templates/cluster_product/); do
225 python /tmp/cookiecutter-templates/generate.py \
226 --template /tmp/cookiecutter-templates/cluster_product/$i \
227 --config-file {{ CLUSTER_CONTEXT_PATH }} \
228 --output-dir /srv/salt/reclass/classes/cluster/;
229 done
230
231 export GIT_SSL_NO_VERIFY=true; git clone https://gerrit.mcp.mirantis.net/salt-models/reclass-system /srv/salt/reclass/classes/system/
232
233 # Create the cfg01 node and disable checkouting the model from remote repository
234 cat << 'EOF' >> /srv/salt/reclass/nodes/_generated/{{ HOSTNAME_CFG01 }}.yml
235 classes:
236 - system.openssh.server.team.all
237 - cluster.{{ LAB_CONFIG_NAME }}.infra.config
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300238 EOF
239
240 node_name: {{ HOSTNAME_CFG01 }}
241 retry: {count: 1, delay: 1}
242 skip_fail: false
243
Dennis Dmitrieva5f38e42017-09-21 21:52:25 +0300244- description: Modify generated model and reclass-system if necessary
245 cmd: |
246 set -e;
247 {%- if SALT_MODELS_SYSTEM_COMMIT != '' %}
248 pushd /srv/salt/reclass/classes/system/
249 git checkout {{ SALT_MODELS_SYSTEM_COMMIT }} && \
250 popd
251 {%- elif SALT_MODELS_SYSTEM_REF_CHANGE != '' -%}
252 pushd /srv/salt/reclass/classes/system/
253 {%- for item in SALT_MODELS_SYSTEM_REF_CHANGE.split(" ") %}
254 git fetch {{ SALT_MODELS_SYSTEM_REPOSITORY }} {{ item }} && git cherry-pick FETCH_HEAD
255 {%- endfor %}
256 popd
257 {%- endif %}
258
259 export REPLACE_DIRS="/srv/salt/reclass/classes/ /srv/salt/reclass/nodes/"
260 find ${REPLACE_DIRS} -type f -exec sed -i 's/apt_mk_version:.*/apt_mk_version: {{ REPOSITORY_SUITE }}/g' {} +
261
262 {%- if IS_CONTRAIL_LAB %}
263 # vSRX IPs for tcp-qa images have 172.16.10.90 hardcoded
264 find ${REPLACE_DIRS} -type f -exec sed -i 's/opencontrail_router01_address:.*/opencontrail_router01_address: 172.16.10.90/g' {} +
265 find ${REPLACE_DIRS} -type f -exec sed -i 's/infra_config_deploy_address: 1.*/infra_config_deploy_address: {{ IPV4_NET_ADMIN_PREFIX }}.15/g' {} +
266 {%- endif %}
267
268 node_name: {{ HOSTNAME_CFG01 }}
269 retry: {count: 1, delay: 1}
270 skip_fail: false
271{%- endmacro %}
272
273
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300274{%- macro MACRO_GENERATE_AND_ENABLE_ENVIRONMENT_MODEL() %}
275{########################################################}
Dennis Dmitrievccdc87a2017-09-28 17:43:54 +0300276
Dennis Dmitriev9e18de72017-10-11 18:14:36 +0300277- description: "[EXPERIMENTAL] Clone 'environment-template' repository to {{ HOSTNAME_CFG01 }}"
278 cmd: |
279 set -e;
280 mkdir -p /tmp/environment/;
281 export GIT_SSL_NO_VERIFY=true; git clone https://github.com/Mirantis/environment-template /tmp/environment/environment_template
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300282 node_name: {{ HOSTNAME_CFG01 }}
283 skip_fail: false
284
Dennis Dmitrievccdc87a2017-09-28 17:43:54 +0300285{%- for ENVIRONMENT_CONTEXT_NAME in ENVIRONMENT_CONTEXT_NAMES %}
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300286- description: "[EXPERIMENTAL] Upload environment inventory to {{ HOSTNAME_CFG01 }}"
287 upload:
288 local_path: {{ config.salt_deploy.templates_dir }}{{ LAB_CONFIG_NAME }}/
289 local_filename: {{ ENVIRONMENT_CONTEXT_NAME }}
290 remote_path: /tmp/environment/
291 node_name: {{ HOSTNAME_CFG01 }}
Dennis Dmitrievccdc87a2017-09-28 17:43:54 +0300292{%- endfor %}
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300293
294- description: "[EXPERIMENTAL] Remove linux.network.interface object from the cluster/system models and use fixed 'environment' model instead"
295 cmd: |
296 set -e;
297 apt-get -y install python-virtualenv python-pip build-essential python-dev libssl-dev;
298 pip install git+https://github.com/dis-xcom/reclass-tools;
299 reclass-tools del-key parameters.linux.network.interface /srv/salt/reclass/classes/cluster/;
300 reclass-tools del-key parameters.linux.network.interface /srv/salt/reclass/classes/system/;
301 reclass-tools del-key parameters.linux.network.interface /usr/share/salt-formulas/reclass/;
302
303 if ! reclass-tools get-key 'classes' /srv/salt/reclass/nodes/{{ HOSTNAME_CFG01 }}.yml | grep -q "environment.{{ ENVIRONMENT_MODEL_INVENTORY_NAME }}$"; then
304 reclass-tools add-key 'classes' 'environment.{{ ENVIRONMENT_MODEL_INVENTORY_NAME }}.reclass_datasource_local' /srv/salt/reclass/nodes/_generated/{{ HOSTNAME_CFG01 }}.yml --merge ;
305 reclass-tools add-key 'classes' 'environment.{{ ENVIRONMENT_MODEL_INVENTORY_NAME }}' /srv/salt/reclass/nodes/_generated/{{ HOSTNAME_CFG01 }}.yml --merge ;
306 fi;
307
308 node_name: {{ HOSTNAME_CFG01 }}
309 retry: {count: 1, delay: 5}
310 skip_fail: false
311
312- description: "Workaround for PROD-14756: all roles must use service.keepalived.cluster.single with the default 'VIP' instance"
313 cmd: |
314 set -e;
315 find /srv/salt/reclass/classes/cluster/ -type f -exec sed -i 's/system.keepalived.*/service.keepalived.cluster.single/g' {} +
316 find /srv/salt/reclass/classes/system/ -type f -exec sed -i 's/system.keepalived.*/service.keepalived.cluster.single/g' {} +
317
318 node_name: {{ HOSTNAME_CFG01 }}
319 retry: {count: 1, delay: 5}
320 skip_fail: false
321
322- description: "[EXPERIMENTAL] Create environment model for virtual environment"
323 cmd: |
324 set -e;
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300325 reclass-tools render --template-dir /tmp/environment/environment_template/ \
326 --output-dir /srv/salt/reclass/classes/environment/ \
Dennis Dmitrievd55a8562017-09-28 22:12:09 +0300327 {% for ENVIRONMENT_CONTEXT_NAME in ENVIRONMENT_CONTEXT_NAMES %} --context /tmp/environment/{{ENVIRONMENT_CONTEXT_NAME}}{% endfor %} \
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300328 --env-name {{ ENVIRONMENT_MODEL_INVENTORY_NAME }}
329 node_name: {{ HOSTNAME_CFG01 }}
330 retry: {count: 1, delay: 5}
331 skip_fail: false
sgudz8c888ec2017-10-02 15:29:23 +0300332
333- description: Modify generated model and reclass-system
334 cmd: |
335 export REPLACE_DIRS="/srv/salt/reclass/classes/ /srv/salt/reclass/nodes/"
336 find ${REPLACE_DIRS} -type f -exec sed -i 's/apt_mk_version:.*/apt_mk_version: {{ REPOSITORY_SUITE }}/g' {} +
337 node_name: {{ HOSTNAME_CFG01 }}
338 retry: {count: 1, delay: 1}
339 skip_fail: false
340
Dennis Dmitriev9f141af2017-09-28 17:21:01 +0300341{%- endmacro %}
342
343
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300344{%- macro MACRO_CONFIGURE_RECLASS(FORMULA_SERVICES='') %}
345{#######################################################}
346- description: Configure reclass
347 cmd: |
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300348 set -e;
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300349 FORMULA_PATH=${FORMULA_PATH:-/usr/share/salt-formulas};
350 FORMULA_REPOSITORY=${FORMULA_REPOSITORY:-deb [arch=amd64] http://apt.mirantis.com/xenial {{ REPOSITORY_SUITE }} salt};
351 FORMULA_GPG=${FORMULA_GPG:-http://apt.mirantis.com/public.gpg};
352 which wget > /dev/null || (apt-get update; apt-get install -y wget);
353 echo "${FORMULA_REPOSITORY}" > /etc/apt/sources.list.d/mcp_salt.list;
354 wget -O - "${FORMULA_GPG}" | apt-key add -;
355 apt-get clean; apt-get update;
356 [ ! -d /srv/salt/reclass/classes/service ] && mkdir -p /srv/salt/reclass/classes/service;
357 declare -a formula_services=({{ FORMULA_SERVICES }});
358 echo -e "\nInstalling all required salt formulas\n";
359 eatmydata apt-get install -y "${formula_services[@]/#/salt-formula-}";
360 for formula_service in "${formula_services[@]}"; do
361 echo -e "\nLink service metadata for formula ${formula_service} ...\n";
362 [ ! -L "/srv/salt/reclass/classes/service/${formula_service}" ] && ln -s ${FORMULA_PATH}/reclass/service/${formula_service} /srv/salt/reclass/classes/service/${formula_service};
363 done;
364 [ ! -d /srv/salt/env ] && mkdir -p /srv/salt/env;
365 [ ! -L /srv/salt/env/prd ] && ln -s ${FORMULA_PATH}/env /srv/salt/env/prd;
366 [ ! -d /etc/reclass ] && mkdir /etc/reclass;
367
368 cat << 'EOF' >> /etc/reclass/reclass-config.yml
369 storage_type: yaml_fs
370 pretty_print: True
371 output: yaml
372 inventory_base_uri: /srv/salt/reclass
373 EOF
374 node_name: {{ HOSTNAME_CFG01 }}
375 retry: {count: 1, delay: 1}
376 skip_fail: false
377
378- description: "*Workaround* remove all cfg01 nodes except {{ HOSTNAME_CFG01 }} to not depend on other clusters in 'reclass --top'"
379 cmd: |
380 # Remove all other nodes except {{ HOSTNAME_CFG01 }} to not rely on them for 'reclass --top'
381 find /srv/salt/reclass/nodes/ -type f -not -name {{ HOSTNAME_CFG01 }}.yml -delete
382 node_name: {{ HOSTNAME_CFG01 }}
383 retry: {count: 1, delay: 5}
384 skip_fail: false
385
386- description: Configure salt adoptors on cfg01
387 cmd: |
388 ln -s /usr/lib/python2.7/dist-packages/reclass/adapters/salt.py /usr/local/sbin/reclass-salt;
389 chmod +x /usr/lib/python2.7/dist-packages/reclass/adapters/salt.py
390 node_name: {{ HOSTNAME_CFG01 }}
391 retry: {count: 1, delay: 1}
392 skip_fail: false
393
394- description: Show reclass-salt --top for cfg01 node
395 cmd: reclass-salt --top
396 node_name: {{ HOSTNAME_CFG01 }}
397 retry: {count: 1, delay: 5}
398 skip_fail: false
399
400- description: Restart salt-master service
401 cmd: systemctl restart salt-master;
402 node_name: {{ HOSTNAME_CFG01 }}
403 retry: {count: 1, delay: 5}
404 skip_fail: false
405{%- endmacro %}
406
407
408{%- macro MACRO_INSTALL_SALT_MINIONS() %}
409{#######################################}
410{% for ssh in config.underlay.ssh %}
411- description: Configure salt-minion on {{ ssh['node_name'] }}
412 cmd: |
413 [ ! -d /etc/salt/minion.d ] && mkdir -p /etc/salt/minion.d;
414 cat << "EOF" >> /etc/salt/minion.d/minion.conf
415 id: {{ ssh['node_name'] }}
416 master: {{ config.salt.salt_master_host }}
417 EOF
418 eatmydata apt-get install -y salt-minion;
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300419 service salt-minion restart; # For case if salt-minion was already installed
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300420 node_name: {{ ssh['node_name'] }}
421 retry: {count: 1, delay: 1}
422 skip_fail: false
423{% endfor %}
424
425
426- description: Accept salt keys from all the nodes
427 cmd: salt-key -A -y
428 node_name: {{ HOSTNAME_CFG01 }}
429 retry: {count: 1, delay: 5}
430 skip_fail: true
431{%- endmacro %}
432
433
434{%- macro MACRO_RUN_SALT_MASTER_UNDERLAY_STATES() %}
435{##################################################}
436
437{# Prepare salt services and nodes settings #}
438
439- description: Run 'linux' formula on cfg01
440 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@salt:master' state.sls linux;
441 node_name: {{ HOSTNAME_CFG01 }}
442 retry: {count: 3, delay: 5}
443 skip_fail: false
444
445- description: Run 'openssh' formula on cfg01
446 cmd: salt --hard-crash --state-output=mixed --state-verbose=False
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300447 -C 'I@salt:master' state.sls openssh &&
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300448 salt --hard-crash --state-output=mixed --state-verbose=False
449 -C 'I@salt:master' cmd.run "sed -i 's/PasswordAuthentication no/PasswordAuthentication
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300450 yes/' /etc/ssh/sshd_config && service ssh reload"
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300451 node_name: {{ HOSTNAME_CFG01 }}
452 retry: {count: 3, delay: 5}
453 skip_fail: false
454
455- description: '*Workaround* of the bug https://mirantis.jira.com/browse/PROD-7962'
456 cmd: salt --hard-crash --state-output=mixed --state-verbose=False
457 '*' cmd.run "echo ' StrictHostKeyChecking no' >> /root/.ssh/config"
458 node_name: {{ HOSTNAME_CFG01 }}
459 retry: {count: 1, delay: 1}
460 skip_fail: false
461
462- description: Run 'salt.master' formula on cfg01
463 cmd: timeout 120 salt --timeout=120 --hard-crash --state-output=mixed --state-verbose=False -C 'I@salt:master' state.sls salt.master;
464 node_name: {{ HOSTNAME_CFG01 }}
465 retry: {count: 2, delay: 5}
466 skip_fail: false
467
Victor Ryzhenkin4e077ad2017-08-10 13:42:11 +0400468{%- if SALT_FORMULAS_REFS != '' %}
469- description: Replace needed formulas to desired version
470 cmd: |
471 set -e;
Victor Ryzhenkinc7913682017-10-11 15:14:40 +0400472 {%- for formula_set in SALT_FORMULAS_REFS.split(' ') %}
473 {% set formula = formula_set.split(':') %}
474 {% set formula_name = formula[0] %}
475 {% set formula_ref = formula[1] %}
Dennis Dmitrievbc57b802017-08-16 18:10:57 +0300476 {% set formula_dir = '/tmp/salt-formula-' + formula_name %}
Victor Ryzhenkin4e077ad2017-08-10 13:42:11 +0400477 git clone {{ SALT_FORMULAS_REPO }}/{{ formula_name }} {{ formula_dir }} &&
478 pushd {{ formula_dir }} &&
479 git fetch {{ SALT_FORMULAS_REPO }}/{{ formula_name }} {{ formula_ref }} &&
480 git checkout FETCH_HEAD &&
481 popd &&
482 if [ -d "{{ formula_dir }}" ]; then
483 echo "Going to replace packaged formula {{ formula_name }}" &&
484 rm -rfv /usr/share/salt-formulas/{env,reclass/service}/{{ formula_name }} &&
Victor Ryzhenkinc7913682017-10-11 15:14:40 +0400485 ln -v -s "{{ formula_dir }}/{{ formula_name }}" "/usr/share/salt-formulas/env/{{ formula_name }}" &&
486 ln -v -s "{{ formula_dir }}/metadata/service/" "/usr/share/salt-formulas/reclass/service/{{ formula_name }}";
Victor Ryzhenkin4e077ad2017-08-10 13:42:11 +0400487 else
488 echo "Stopped, directory /root/salt-formula-{{ formula_name }} does not exist!";
489 fi
490 {%- endfor %}
491 node_name: {{ HOSTNAME_CFG01 }}
492 retry: {count: 1, delay: 10}
493 skip_fail: false
494{%- endif %}
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300495
496- description: Refresh pillars on salt-master minion
497 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@salt:master' saltutil.refresh_pillar
498 node_name: {{ HOSTNAME_CFG01 }}
499 retry: {count: 1, delay: 5}
500 skip_fail: false
501
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300502- description: Show reclass-salt --top for salt-master node
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300503 cmd: reclass-salt --top
504 node_name: {{ HOSTNAME_CFG01 }}
505 retry: {count: 1, delay: 5}
506 skip_fail: false
507
508- description: Sync all salt resources on salt-master minion
Dennis Dmitriev9a6cacc2017-08-14 00:08:41 +0300509 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@salt:master' saltutil.sync_all && sleep 5
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300510 node_name: {{ HOSTNAME_CFG01 }}
511 retry: {count: 1, delay: 5}
512 skip_fail: false
513
514- description: Configure linux on master
515 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@salt:master' state.sls 'linux.system'
516 node_name: {{ HOSTNAME_CFG01 }}
517 retry: {count: 1, delay: 5}
518 skip_fail: false
519
520- description: Configure salt.minion on master
521 cmd: salt --timeout=120 --hard-crash --state-output=mixed --state-verbose=False
522 -C 'I@salt:master' state.sls salt.minion && sleep 10
523 node_name: {{ HOSTNAME_CFG01 }}
524 retry: {count: 3, delay: 10}
525 skip_fail: false
526
527- description: Run state 'salt' on master (for salt.api, etc)
528 cmd: salt --hard-crash --state-output=mixed --state-verbose=False
529 -C 'I@salt:master' state.sls salt
530 node_name: {{ HOSTNAME_CFG01 }}
531 retry: {count: 3, delay: 10}
532 skip_fail: false
533{%- endmacro %}
534
535{%- macro MACRO_GENERATE_INVENTORY() %}
536{#####################################}
537- description: Generate inventory for all the nodes to the /srv/salt/reclass/nodes/_generated
538 cmd: salt --hard-crash --state-output=mixed --state-verbose=False
539 -C 'I@salt:master' state.sls reclass
540 node_name: {{ HOSTNAME_CFG01 }}
541 retry: {count: 1, delay: 5}
542 skip_fail: false
543
544- description: Refresh pillars on all minions
545 cmd: salt --hard-crash --state-output=mixed --state-verbose=False '*' saltutil.refresh_pillar
546 node_name: {{ HOSTNAME_CFG01 }}
547 retry: {count: 1, delay: 5}
548 skip_fail: false
549
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300550- description: Show reclass-salt --top for all generated nodes
Dennis Dmitriev4386a072017-09-04 13:58:02 +0300551 cmd: |
552 set -e
553 if salt-call sys.doc reclass.validate_node_params | grep -q reclass.validate_node_params ; then salt-call reclass.validate_nodes_params ; fi
554 if salt-call sys.doc reclass.validate_pillar | grep -q reclass.validate_pillar ; then salt-call reclass.validate_pillar ; fi
555 reclass-salt --top
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300556 node_name: {{ HOSTNAME_CFG01 }}
557 retry: {count: 1, delay: 5}
558 skip_fail: false
559
560- description: Sync all salt resources
Dennis Dmitriev9a6cacc2017-08-14 00:08:41 +0300561 cmd: salt --hard-crash --state-output=mixed --state-verbose=False '*' saltutil.sync_all && sleep 5
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300562 node_name: {{ HOSTNAME_CFG01 }}
563 retry: {count: 1, delay: 5}
564 skip_fail: false
565{%- endmacro %}
566
567
568{%- macro MACRO_BOOTSTRAP_ALL_MINIONS() %}
569{########################################}
570# Bootstrap all nodes
571- description: Configure linux on other nodes
572 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@linux:system' state.sls linux
573 node_name: {{ HOSTNAME_CFG01 }}
574 retry: {count: 5, delay: 10}
575 skip_fail: false
576
577- description: Configure openssh on all nodes
Dennis Dmitriev3e731a42017-08-30 17:12:59 +0300578 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@linux:system and not cfg01*' state.sls openssh &&
Dennis Dmitriev492813e2017-08-09 15:08:58 +0300579 salt --hard-crash --state-output=mixed --state-verbose=False
580 -C 'I@linux:system and not cfg01*' cmd.run "sed -i 's/PasswordAuthentication no/PasswordAuthentication
581 yes/' /etc/ssh/sshd_config && service ssh reload"
582 node_name: {{ HOSTNAME_CFG01 }}
583 retry: {count: 1, delay: 5}
584 skip_fail: false
585
586- description: Configure salt.minion on other nodes
587 cmd: salt --timeout=120 --hard-crash --state-output=mixed --state-verbose=False -C 'I@linux:system and not cfg01*' state.sls salt.minion &&
588 sleep 10
589 node_name: {{ HOSTNAME_CFG01 }}
590 retry: {count: 3, delay: 15}
591 skip_fail: false
592
593- description: Check salt minion versions on slaves
594 cmd: salt '*' test.version
595 node_name: {{ HOSTNAME_CFG01 }}
596 retry: {count: 3, delay: 15}
597 skip_fail: false
598
599- description: Check salt top states on nodes
600 cmd: salt '*' state.show_top
601 node_name: {{ HOSTNAME_CFG01 }}
602 retry: {count: 1, delay: 5}
603 skip_fail: false
604
605- description: Configure ntp and rsyslog on nodes
606 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C 'I@linux:system' state.sls ntp,rsyslog
607 node_name: {{ HOSTNAME_CFG01 }}
608 retry: {count: 1, delay: 10}
609 skip_fail: false
Sergii Golovatiuk50f91892017-08-04 18:11:06 +0200610{%- endmacro %}
Dennis Dmitriev9dada8a2017-08-30 17:38:55 +0300611
612
613{%- macro MACRO_NETWORKING_WORKAROUNDS() %}
614{#########################################}
615
Oleksii Butenkof72f9d12017-10-18 13:10:04 +0300616#- description: '*Workaround 1/2* of the bug PROD-9576 to get bond0-connectivity *without* rebooting nodes'
617# cmd: salt-call --hard-crash --state-output=mixed --state-verbose=False cmd.run
618# "mkdir -p /tmp/PROD-9576; cd /tmp/PROD-9576; git clone https://gerrit.mcp.mirantis.net/salt-formulas/linux; cd linux;
619# git fetch https://gerrit.mcp.mirantis.net/salt-formulas/linux refs/changes/54/2354/16 && git checkout FETCH_HEAD;
620# cp -f linux/network/interface.sls /srv/salt/env/prd/linux/network/;
621# cp -f linux/map.jinja /srv/salt/env/prd/linux/;"
622# node_name: {{ HOSTNAME_CFG01 }}
623# retry: {count: 1, delay: 5}
624# skip_fail: false
Dennis Dmitriev9dada8a2017-08-30 17:38:55 +0300625
626- description: '*Workaround: Load bonding module before call state.linux'
627 cmd: salt -C "I@linux:network:interface:*:type:bond" cmd.run 'modprobe bonding'
628 node_name: {{ HOSTNAME_CFG01 }}
629 retry: {count: 1, delay: 5}
Dennis Dmitriev0496eb72017-09-05 21:42:10 +0300630 skip_fail: true
Dennis Dmitriev9dada8a2017-08-30 17:38:55 +0300631
632- description: '*Workaround* install bridge-utils before running linux formula'
633 # The formula removes default route and then tries to install the package, fails.
634 cmd: salt --hard-crash --state-output=mixed --state-verbose=False -C '* and not
635 cfg01*' cmd.run 'sudo apt-get install -y bridge-utils'
636 node_name: {{ HOSTNAME_CFG01 }}
637 retry: {count: 1, delay: 5}
638 skip_fail: false
639
640{%- endmacro %}
Victor Ryzhenkin9cc824c2017-10-12 19:02:23 +0400641
642{%- macro ADJUST_K8S_OPTS() %}
643{#########################################}
644
645- description: Set k8s deploy parameters
646 cmd: |
647 {% for k8s_opt, value in config.k8s_deploy.items() %}
648 {% if value|string() %}
649 salt-call reclass.cluster_meta_set name={{ k8s_opt }} value={{ value }};
650 {% endif %}
651 {% endfor %}
652 node_name: {{ HOSTNAME_CFG01 }}
653 retry: {count: 1, delay: 1}
654 skip_fail: false
655
656{%- endmacro %}