sgudz | f0ff030 | 2018-01-29 18:50:01 +0200 | [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:
|
sgudz | f0ff030 | 2018-01-29 18:50:01 +0200 | [diff] [blame] | 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 {interface_name}
|
sgudz | f0ff030 | 2018-01-29 18:50:01 +0200 | [diff] [blame] | 39 |
|
| 40 | # Create swap
|
| 41 | - fallocate -l 4G /swapfile
|
| 42 | - chmod 600 /swapfile
|
| 43 | - mkswap /swapfile
|
| 44 | - swapon /swapfile
|
| 45 | - echo "/swapfile none swap defaults 0 0" >> /etc/fstab
|
sgudz | f0ff030 | 2018-01-29 18:50:01 +0200 | [diff] [blame] | 46 | - echo "nameserver 172.18.208.44" > /etc/resolv.conf;
|
sgudz | f0ff030 | 2018-01-29 18:50:01 +0200 | [diff] [blame] | 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 | # The loopback network interface
|
| 58 | auto lo
|
| 59 | iface lo inet loopback
|
| 60 | auto {interface_name}
|
| 61 | iface {interface_name} inet dhcp
|