blob: 59eaf1ef44288aca17c2ba59d4aa65c0f7de2bef [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
33 - sudo ifup {interface_name}
34 - sudo route add default gw {gateway} {interface_name}
35 - 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 -
44
45 - apt-get clean
46 - apt-get update
47 - apt-get -y upgrade
48
49 # Install common packages
50 - apt-get install -y python-pip git
51 - apt-get install -y curl tmux byobu iputils-ping traceroute htop tree
52
53 - apt-get install -y salt-minion
54
55 # To be configured from inventory/fuel-devops by operator or autotests
56 - 'echo "id: {hostname}" >> /etc/salt/minion'
Dennis Dmitriev44d6f142016-10-18 15:51:33 +030057 - 'echo "master: 172.16.10.100" >> /etc/salt/minion'
Dennis Dmitriev6f59add2016-10-18 13:45:27 +030058
59 - rm -f /etc/salt/pki/minion/minion_master.pub
60 - service salt-minion restart
61
62 #- echo "Showing node metadata..."
63 #- salt-call pillar.data
64
65 #- echo "Running complete state ..."
66 #- salt-call state.sls linux,openssh,salt
67
68 ########################################################
69 # Node is ready, allow SSH access
70 - echo "Allow SSH access ..."
71 - sudo iptables -D INPUT -p tcp --dport 22 -j DROP
72 ########################################################
73
74 write_files:
75 - path: /etc/network/interfaces.d/99-tcp-tests.cfg
76 content: |
77 auto eth0
78 iface eth0 inet dhcp
79
80 # 2nd interface should be UP without IP address
81 auto eth1
82 iface eth1 inet manual
83 pre-up ifconfig $IFACE up
84 post-down ifconfig $IFACE down