1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-22 18:06:04 +02:00
infrastructure/roles/gitlab_runner/files/user-data
Kristian Klausen 06e0252720
gitlab_runner: Add VM based executor (libvirt-executor)
For some workloads running in a container is too restrictive, ex:
arch-boxes (loop device, filesystem mount, pacstrap) and archiso
(pacstrap). Currently they both run a TCG accelerated QEMU VM, which is
very slow and painful to work with. We should provide a better option to
our users!

This adds a hardware accelerated VM for this kinds of workloads, which
is way faster and you can do whatever you like (mostly)!

Fix #283
2022-07-29 20:18:34 +02:00

9 lines
162 B
Plaintext

#cloud-config
disable_root: false
users:
- name: root
ssh_authorized_keys:
- PUBLIC_SSH_KEY
runcmd:
- [ sudo, touch, /etc/cloud/cloud-init.disabled ]