| # All the data below will be stored as a string object | |
#cloud-config, see http://cloudinit.readthedocs.io/en/latest/topics/examples.html | |
ssh_pwauth: True | |
users: | |
- name: root | |
sudo: ALL=(ALL) NOPASSWD:ALL | |
shell: /bin/bash | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGwjUlYn9UsmWmAGSuEA2sICad7WqxgsJR0HKcMbbxi0tn96h4Cq2iGYmzlJ48egLm5R5pxyWnFvL4b/2zb+kKTPCMwRc9nv7xEGosEFNQEoSDd+gYu2CO0dgS2bX/7m2DXmzvhqPjxWQUXXsb0OYAS1r9Es65FE8y4rLaegz8V35xfH45bTCA0W8VSKh264XtGz12hacqsttE/UvyjJTZe+/XV+xJy3WAWxe8J/MuW1VqbqNewTmpTE/LJU8i6pG4msU6+wH99UvsGAOKQOduynUHKWG3VZg5YCjpbbV/t/pfW/vHB3b3jiifQmNhulyiG/CNnSQ5BahtV/7qPsYt vagrant@cfg01 | |
disable_root: false | |
chpasswd: | |
list: | | |
root:r00tme | |
expire: False | |
bootcmd: | |
# Block access to SSH while node is preparing | |
- cloud-init-per once sudo iptables -A INPUT -p tcp --dport 22 -j DROP | |
# Enable root access | |
- sed -i -e '/^PermitRootLogin/s/^.*$/PermitRootLogin yes/' /etc/ssh/sshd_config | |
- service sshd restart | |
output: | |
all: '| tee -a /var/log/cloud-init-output.log /dev/tty0' | |
runcmd: | |
# Configure dhclient | |
- sudo echo "nameserver {gateway}" >> /etc/resolvconf/resolv.conf.d/base | |
- sudo resolvconf -u | |
# Prepare network connection | |
- sudo ifup {interface_name} | |
- sudo route add default gw {gateway} {interface_name} | |
- sudo ifup eth1 | |
############## TCP Cloud cfg01 node ################## | |
- echo "Preparing base OS" | |
- which wget >/dev/null || (apt-get update; apt-get install -y wget) | |
- echo "deb [arch=amd64] http://apt.tcpcloud.eu/nightly/ xenial main security extra tcp tcp-salt" > /etc/apt/sources.list | |
# 'tcp-salt' from trusty is for temporary workaround until formulas will be fixed in xenial | |
- echo "deb [arch=amd64] http://apt.tcpcloud.eu/nightly/ trusty tcp-salt" >> /etc/apt/sources.list | |
- wget -O - http://apt.tcpcloud.eu/public.gpg | apt-key add - | |
- apt-get clean | |
- apt-get update | |
- apt-get -y upgrade | |
# Install common packages | |
- apt-get install -y python-pip | |
- apt-get install -y curl tmux byobu iputils-ping traceroute htop tree | |
- echo "Configuring salt master ..." | |
- apt-get install -y salt-master reclass | |
- apt-get install -y salt-formula-* | |
- | | |
cat << 'EOF' >> /etc/salt/master.d/master.conf | |
file_roots: | |
base: | |
- /usr/share/salt-formulas/env | |
pillar_opts: False | |
open_mode: True | |
reclass: &reclass | |
storage_type: yaml_fs | |
inventory_base_uri: /srv/salt/reclass | |
ext_pillar: | |
- reclass: *reclass | |
master_tops: | |
reclass: *reclass | |
EOF | |
- echo "Configure git settings and certificate" | |
- touch /root/.git_trusted_certs.pem | |
- for server in git.tcpcloud.eu github.com; do openssl s_client -showcerts -connect $server:443 </dev/null | openssl x509 -outform PEM >> /root/.git_trusted_certs.pem; done | |
- HOME=/root git config --global http.sslCAInfo /root/.git_trusted_certs.pem | |
- HOME=/root git config --global user.email "tcp-qa@example.com" | |
- HOME=/root git config --global user.name "TCP QA" | |
- echo "Configuring reclass ..." | |
- git clone https://github.com/Mirantis/mk-lab-salt-model.git /srv/salt/reclass -b dash | |
- sed -i 's/ master/ dash/' /srv/salt/reclass/classes/cluster/mk20_lab_advanced/openstack_config.yml | |
- | | |
cat << 'EOF' >> /srv/salt/reclass/nodes/control/{hostname}.yml | |
# local storage | |
reclass: | |
storage: | |
data_source: | |
engine: local | |
EOF | |
- cd /srv/salt/reclass; git add -A;git commit -m"use dash repo" | |
- mkdir -p /srv/salt/reclass/classes/service | |
- for i in /usr/share/salt-formulas/reclass/service/*; do ln -s $i /srv/salt/reclass/classes/service/; done | |
- '[ ! -d /etc/reclass ] && mkdir /etc/reclass' | |
- | | |
cat << 'EOF' >> /etc/reclass/reclass-config.yml | |
storage_type: yaml_fs | |
pretty_print: True | |
output: yaml | |
inventory_base_uri: /srv/salt/reclass | |
EOF | |
- echo "Configuring salt minion ..." | |
- apt-get install -y salt-minion | |
- '[ ! -d /etc/salt/minion.d ] && mkdir -p /etc/salt/minion.d' | |
- | | |
cat << "EOF" >> /etc/salt/minion.d/minion.conf | |
id: {hostname} | |
master: localhost | |
EOF | |
- echo "Restarting services with workarounds..." | |
- service salt-master restart | |
- sleep 60 | |
- rm -f /etc/salt/pki/minion/minion_master.pub | |
- service salt-minion restart | |
- echo "Showing system info and metadata ..." | |
- salt-call --no-color grains.items | |
- salt-call --no-color pillar.data | |
- reclass -n {hostname} | |
######################################################## | |
# Node is ready, allow SSH access | |
- echo "Allow SSH access ..." | |
- sudo iptables -D INPUT -p tcp --dport 22 -j DROP | |
######################################################## | |
write_files: | |
- path: /etc/network/interfaces.d/99-tcp-tests.cfg | |
content: | | |
auto eth0 | |
iface eth0 inet dhcp | |
# 2nd interface should be UP without IP address | |
auto eth1 | |
iface eth1 inet dhcp | |
- path: /root/.ssh/id_rsa | |
owner: root:root | |
permissions: '0600' | |
content: | | |
-----BEGIN RSA PRIVATE KEY----- | |
MIIEpAIBAAKCAQEAxsI1JWJ/VLJlpgBkrhANrCAmne1qsYLCUdBynDG28YtLZ/eo | |
eAqtohmJs5SePHoC5uUeacclpxby+G/9s2/pCkzwjMEXPZ7+8RBqLBBTUBKEg3fo | |
GLtgjtHYEtm1/+5tg15s74aj48VkFF17G9DmAEta/RLOuRRPMuKy2noM/Fd+cXx+ | |
OW0wgNFvFUioduuF7Rs9doWnKrLbRP1L8oyU2Xvv11fsSct1gFsXvCfzLltVam6j | |
XsE5qUxPyyVPIuqRuJrFOvsB/fVL7BgDikDnbsp1Bylht1WYOWAo6W21f7f6X1v7 | |
xwd2944on0JjYbpcohvwjZ0kOQWobVf+6j7GLQIDAQABAoIBAF0tAAMlmLGY7CQU | |
/R3IctBlRhU1DpZmyTfXc1MbzzqO5Wu44yZbQyjBthcUrdWGEUQy1r4Z2OHq1T54 | |
KcPry6DDjuU9Q+rkVXmnC07a3GOmOq7zEEA/3zU01ImJvFNdb8NtCb6ELOKDT7Zo | |
WGUi2h/7M41+OqDzD2m4csYO/3Vvr12sMhn9BfwU4OPpL44A4PJiEryEAw9o5/j/ | |
73eyPvgf6tkC4l0mMtfHB9tg/F++iH8fiEr1SMvHGIc9gZNmFYMrs2XfLkAejPfH | |
XrOyw6eqd+kluqw51gHhdeQYwBx6mfOkbhPHWU79FzpH5M1ikdfImZmPCxVf3Ykj | |
nxLoK9UCgYEA4c9agPb/OFyN00nnUMBxzQt1pErpOf/7QhnvNZThomzSV7PyefxF | |
H6G/VlS3gCcrWBCh7mqOSxGcNQwgudVqzUm7QXruQeg4nWcCGSxg7lGYSEf0MyWL | |
5wrd+f9MoV/VV8udIPENjp96o5kwQEVRfsTBNwmk54kup2+br5q8re8CgYEA4VT8 | |
UeIN+plP6FjZYITI+SO/ou5goKIhfBrqa5gOXXPc2y6sIu9wBWCr+T7FAF/2gGhS | |
rpVx76zcmx05nwkxIlJh58+G3MVyUDFoWnrtL38vdkBSuOGgNfzcBsFpQvFs8WaW | |
otbuTtkPcXbVdYRr32/C620MxXhUO+svo3CLaaMCgYEA1rjlF8NHl+Gy31rkQg5t | |
aIxgFpVBR+zZkNa2d94V3Ozb65fqmALB/D1Dg6VVROB6P+i5AsyCeHHLd0oMCIof | |
YAyfqrlpvHRE+bAM98ESfyxJwVnipYwrh8z2nZYd2UoWxcCRrtRpjtipts2ha0w/ | |
HWudS2e5To5NNdxUT9y1VDMCgYEAxkQiE+ZkyGiXv+hVtLCBqX4EA9fdm9msvudr | |
9qn/kcj9vrntanvlxEWQbCoH61GEsu2YOtdyPiKKpc1sQvwyiHGWhgK7NoxhDiC7 | |
IknhYxZ064ajgtu8PWS1MRiDhwypACt1Rej6HNSu2vZl0hZnWF2dU8tLHoHHFEXX | |
T+caNCMCgYBZpD6XBiiEXf0ikXYnXKOmbsyVG80V+yqfLo85qb2RW9TaviOSP43g | |
nB22ReMSHq2cOrs6VTTgfhxefBwzdDFbfKMf6ZU82jCNlpetAZOrhdMHUvcsjSQk | |
XKI6Ldfq6TU3xKujRHfGP+oQ6GLwVCL/kjGxOuSRLFGfRiiqYI3nww== | |
-----END RSA PRIVATE KEY----- | |
- path: /root/.ssh/config | |
owner: root:root | |
permissions: '0600' | |
content: | | |
Host * | |
ServerAliveInterval 300 | |
ServerAliveCountMax 10 | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null |