blob: 72944477d49bb91dbb6cf5babbd71bd342c0f8ac [file] [log] [blame]
Dennis Dmitriev26b94a22018-07-19 16:12:22 +03001{% from 'cookied-cicd-k8s-genie/underlay.yaml' import HOSTNAME_CFG01 with context %}
2{% from 'cookied-cicd-k8s-genie/underlay.yaml' import LAB_CONFIG_NAME with context %}
3{% from 'cookied-cicd-k8s-genie/underlay.yaml' import DOMAIN_NAME with context %}
4
Dennis Dmitriev0f272312018-10-01 13:29:40 +03005{% set SALT_MODELS_REPOSITORY = os_env('SALT_MODELS_REPOSITORY','https://gerrit.mcp.mirantis.com/salt-models/mcp-virtual-lab') %}
Dennis Dmitriev26b94a22018-07-19 16:12:22 +03006# Other salt model repository parameters see in shared-salt.yaml
7
8{% import 'shared-salt.yaml' as SHARED with context %}
9
10{{ SHARED.MACRO_INSTALL_SALT_MINIONS() }}
11
12{{SHARED.MACRO_CHECK_SALT_VERSION_SERVICES_ON_CFG()}}
13
14{{SHARED.MACRO_CHECK_SALT_VERSION_ON_NODES()}}
Tatyana Leontovichad1cd192019-04-01 11:50:17 +030015
16- description: "Share custom key from cfg to give each node acces with key from cfg01"
17 cmd: |
18 set -e;
19 set -x;
20 key=$(ssh-keygen -y -f /root/.ssh/id_rsa);
21 salt '*' cmd.run "echo $key >> /root/.ssh/authorized_keys";
22 node_name: {{ HOSTNAME_CFG01 }}
23 retry: {count: 1, delay: 5}
24 skip_fail: true