1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-12 17:26:19 +00:00
Files
geek-cookbook/examples/scripts/cloud-config-centos-atomic.txt
2017-12-11 19:16:53 +13:00

22 lines
705 B
Plaintext

#cloud-config
write_files:
- path: /etc/docker-latest/daemon.json
content: |
{
"log-driver": "journald",
"signature-verification": false,
"experimental": true,
"registry-mirrors": ["https://registry-mirror.funkypenguin.co.nz"]
}
# Add users to the system. Users are added after groups are added.
users:
- name: davidy
sudo: ALL=(ALL) NOPASSWD:ALL
ssh-authorized-keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFkmE2zK7uE9q75nzQxa9tQPHiCgaEUkIDj9xdoPL911 davidy@funkypenguin.co.nz
runcmd:
- systemctl disable docker --now
- systemctl enable docker-latest --now
- sed -i '/DOCKERBINARY/s/^#//g' /etc/sysconfig/docker
- /bin/atomic host upgrade