disk-from-cloud-image/gen-cloud-init/user-data-alpine-ovs

28 lines
564 B
Plaintext

#cloud-config
package_update: true
package_upgrade: false
package_reboot_if_required: false
#package_reboot: true
packages:
- wget
ssh_pwauth: true
password: ###PASSWORD###
ssh_authorized_keys:
- ###SSH_KEY_1###
- ###SSH_KEY_2###
- ###SSH_KEY_3###
chpasswd:
expire: false
users:
- default
runcmd:
- [wget, https://gist.githubusercontent.com/elico/bb51c4b7b3edc83c6f804170090752b6/raw/f2db74effe0d3b6cf605bf218105737f43bdf30c/alpine-vm-install-openvswitch.sh, -O, /tmp/alpine-vm-install-openvswitch.sh]
- [sh, /tmp/alpine-vm-install-openvswitch.sh]