blob: f18129f2e1d7a51e1db976ead1fb6ce4998c8c90 [file] [log] [blame]
Dennis Dmitriev3fbbc7f2017-12-21 15:42:14 +02001| # All the data below will be stored as a string object
2 #cloud-config, see http://cloudinit.readthedocs.io/en/latest/topics/examples.html
3
4 ssh_pwauth: True
5 users:
6 - name: root
7 sudo: ALL=(ALL) NOPASSWD:ALL
8 shell: /bin/bash
9 ssh_authorized_keys:
10 {% for key in config.underlay.ssh_keys %}
11 - ssh-rsa {{ key['public'] }}
12 {% endfor %}
13
14 disable_root: false
15 chpasswd:
16 list: |
17 root:r00tme
18 expire: False
19
20 bootcmd:
21 # Block access to SSH while node is preparing
22 - cloud-init-per once sudo iptables -A INPUT -p tcp --dport 22 -j DROP
23 # Enable root access
24 - sed -i -e '/^PermitRootLogin/s/^.*$/PermitRootLogin yes/' /etc/ssh/sshd_config
25 - service sshd restart
26 output:
27 all: '| tee -a /var/log/cloud-init-output.log /dev/tty0'
28
azvyagintsevf195bb82018-01-31 21:53:56 +020029 misc_bucket:
30 - &runcmd_commands |
31 #!/bin/bash
32 set -x
33 # Prepare network connection
34 sudo ifup ens3
35 #- sudo route add default gw {gateway} {interface_name}
36 rm /etc/resolv.conf
37 touch /etc/resolv.conf
38 export LOCAL_DNS_IP=$(ifconfig ens3 | grep "inet addr" | cut -d ':' -f 2 | cut -d ' ' -f 1)
39 echo "nameserver $LOCAL_DNS_IP" >> /etc/resolv.conf;
40 echo "nameserver 172.18.208.44" >> /etc/resolv.conf;
41 echo "nameserver 8.8.8.8" >> /etc/resolv.conf;
42 echo "supersede domain-name-servers $LOCAL_DNS_IP, 8.8.8.8, 172.18.208.44" >> /etc/dhcp/dhclient.conf
43 export TERM=linux
44 export LANG=C
45
46 # Create swap
47 fallocate -l 4G /swapfile
48 chmod 600 /swapfile
49 mkswap /swapfile
50 swapon /swapfile
51 echo "/swapfile none swap defaults 0 0" >> /etc/fstab
52
53 ########################################################
54 # Node is ready, allow SSH access
55 echo "Allow SSH access ..."
56 sudo iptables -D INPUT -p tcp --dport 22 -j DROP
57 ########################################################
58 # Mirror from https://github.com/Mirantis/mcp-common-scripts/blob/master/config-drive/mirror_config.sh
59 echo "Configuring salt"
60 service salt-minion stop
61 systemctl disable salt-minion.service
62 # envsubst < /root/minion.conf > /etc/salt/minion.d/minion.conf
63
Dennis Dmitriev3fbbc7f2017-12-21 15:42:14 +020064 runcmd:
azvyagintsevf195bb82018-01-31 21:53:56 +020065 - [ sh, -c, *runcmd_commands ]
Dennis Dmitriev3fbbc7f2017-12-21 15:42:14 +020066
67 write_files:
68 - path: /etc/network/interfaces
69 content: |
70 auto ens3
71 iface ens3 inet dhcp
72
73 - path: /root/.ssh/config
74 owner: root:root
75 permissions: '0600'
76 content: |
77 Host *
78 ServerAliveInterval 300
79 ServerAliveCountMax 10
80 StrictHostKeyChecking no
azvyagintsevf195bb82018-01-31 21:53:56 +020081 UserKnownHostsFile /dev/null