blob: b0dee667c7c3fe983a33da60feb8c0b36d9254a5 [file] [log] [blame]
Dennis Dmitriev6f59add2016-10-18 13:45:27 +03001| # 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:
Dennis Dmitriev95126792016-10-18 17:03:30 +03006 - name: root
Dennis Dmitriev6f59add2016-10-18 13:45:27 +03007 sudo: ALL=(ALL) NOPASSWD:ALL
8 shell: /bin/bash
9 ssh_authorized_keys:
10 - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGwjUlYn9UsmWmAGSuEA2sICad7WqxgsJR0HKcMbbxi0tn96h4Cq2iGYmzlJ48egLm5R5pxyWnFvL4b/2zb+kKTPCMwRc9nv7xEGosEFNQEoSDd+gYu2CO0dgS2bX/7m2DXmzvhqPjxWQUXXsb0OYAS1r9Es65FE8y4rLaegz8V35xfH45bTCA0W8VSKh264XtGz12hacqsttE/UvyjJTZe+/XV+xJy3WAWxe8J/MuW1VqbqNewTmpTE/LJU8i6pG4msU6+wH99UvsGAOKQOduynUHKWG3VZg5YCjpbbV/t/pfW/vHB3b3jiifQmNhulyiG/CNnSQ5BahtV/7qPsYt vagrant@cfg01
11
Dennis Dmitriev95126792016-10-18 17:03:30 +030012 disable_root: false
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030013 chpasswd:
14 list: |
Dennis Dmitriev95126792016-10-18 17:03:30 +030015 root:r00tme
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030016 expire: False
17
18 bootcmd:
19 # Block access to SSH while node is preparing
20 - cloud-init-per once sudo iptables -A INPUT -p tcp --dport 22 -j DROP
Dennis Dmitriev95126792016-10-18 17:03:30 +030021 # Enable root access
22 - sed -i'.orig' -e's/without-password/yes/' /etc/ssh/sshd_config
23 - service sshd restart
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030024 output:
25 all: '| tee -a /var/log/cloud-init-output.log /dev/tty0'
26
27 runcmd:
28 # Configure dhclient
29 - sudo echo "nameserver {gateway}" >> /etc/resolvconf/resolv.conf.d/base
30 - sudo resolvconf -u
31
32 # Prepare network connection
Dennis Dmitriev010f4cd2016-11-01 20:43:51 +020033 - sudo ifup eth0
34 #- sudo route add default gw {gateway} {interface_name}
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030035 - sudo ifup eth1
36
37 ############## TCP Cloud cfg01 node ##################
38 #- sleep 120
39 - echo "Preparing base OS"
40 - which wget >/dev/null || (apt-get update; apt-get install -y wget)
41
42 - echo "deb [arch=amd64] http://apt.tcpcloud.eu/nightly/ trusty main security extra tcp tcp-salt" > /etc/apt/sources.list
43 - wget -O - http://apt.tcpcloud.eu/public.gpg | apt-key add -
Dennis Dmitriev23e5d192016-10-31 11:27:10 +020044 # saltstack repo is for minions that have the same version in the xenial and trusty (2016.3.3)
45 - echo "deb http://repo.saltstack.com/apt/ubuntu/14.04/amd64/latest trusty main" > /etc/apt/sources.list.d/saltstack.list
46 - wget -O - https://repo.saltstack.com/apt/ubuntu/14.04/amd64/latest/SALTSTACK-GPG-KEY.pub | apt-key add -
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030047
48 - apt-get clean
49 - apt-get update
50 - apt-get -y upgrade
51
52 # Install common packages
53 - apt-get install -y python-pip git
54 - apt-get install -y curl tmux byobu iputils-ping traceroute htop tree
55
56 - apt-get install -y salt-minion
57
58 # To be configured from inventory/fuel-devops by operator or autotests
59 - 'echo "id: {hostname}" >> /etc/salt/minion'
Dennis Dmitriev44d6f142016-10-18 15:51:33 +030060 - 'echo "master: 172.16.10.100" >> /etc/salt/minion'
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030061
Dennis Dmitriev45738b92016-10-20 18:11:15 +030062 - echo "Restarting minion service with workarounds..."
63 - rm -f /etc/salt/pki/minion/minion_master.pub
64 - service salt-minion restart
65 - sleep 5
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030066 - rm -f /etc/salt/pki/minion/minion_master.pub
67 - service salt-minion restart
68
69 #- echo "Showing node metadata..."
70 #- salt-call pillar.data
71
72 #- echo "Running complete state ..."
73 #- salt-call state.sls linux,openssh,salt
74
75 ########################################################
76 # Node is ready, allow SSH access
77 - echo "Allow SSH access ..."
78 - sudo iptables -D INPUT -p tcp --dport 22 -j DROP
79 ########################################################
80
81 write_files:
82 - path: /etc/network/interfaces.d/99-tcp-tests.cfg
83 content: |
84 auto eth0
85 iface eth0 inet dhcp
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030086 auto eth1
Dennis Dmitriev45738b92016-10-20 18:11:15 +030087 iface eth1 inet dhcp