Dennis Dmitriev | 0f624a8 | 2018-06-11 12:57:13 +0300 | [diff] [blame] | 1 | | # 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 | # Enable root access |
| 22 | - sed -i -e '/^PermitRootLogin/s/^.*$/PermitRootLogin yes/' /etc/ssh/sshd_config |
| 23 | - service sshd restart |
| 24 | output: |
| 25 | all: '| tee -a /var/log/cloud-init-output.log /dev/tty0' |
| 26 | |
| 27 | runcmd: |
| 28 | - export TERM=linux |
| 29 | - export LANG=C |
| 30 | # Configure dhclient |
| 31 | - sudo echo "nameserver {gateway}" >> /etc/resolvconf/resolv.conf.d/base |
| 32 | - sudo resolvconf -u |
| 33 | |
| 34 | # Enable grub menu using updated config below |
| 35 | - update-grub |
| 36 | |
| 37 | # Prepare network connection |
| 38 | - sudo ifup ens3 |
| 39 | #- sudo route add default gw {gateway} {interface_name} |
| 40 | |
| 41 | # Create swap |
| 42 | #- fallocate -l 16G /swapfile |
| 43 | #- chmod 600 /swapfile |
| 44 | #- mkswap /swapfile |
| 45 | #- swapon /swapfile |
| 46 | #- echo "/swapfile none swap defaults 0 0" >> /etc/fstab |
| 47 | |
| 48 | write_files: |
| 49 | - path: /etc/default/grub.d/97-enable-grub-menu.cfg |
| 50 | content: | |
| 51 | GRUB_RECORDFAIL_TIMEOUT=30 |
| 52 | GRUB_TIMEOUT=3 |
| 53 | GRUB_TIMEOUT_STYLE=menu |
| 54 | |
| 55 | - path: /etc/network/interfaces |
| 56 | content: | |
| 57 | auto ens3 |
| 58 | iface ens3 inet dhcp |
| 59 | |