26 lines
447 B
YAML
26 lines
447 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
remote_user: root
|
||
|
gather_facts: yes
|
||
|
roles:
|
||
|
- role: base
|
||
|
- role: generate-tls-certs
|
||
|
- role: apt_cacher_ng
|
||
|
- hosts: arm64
|
||
|
roles:
|
||
|
- role: zsh_chic
|
||
|
vars:
|
||
|
zsh_chic_arch: arm64
|
||
|
zsh_chic:
|
||
|
users: "{{ default_user }}"
|
||
|
- hosts: arm32
|
||
|
roles:
|
||
|
- role: zsh_chic
|
||
|
vars:
|
||
|
zsh_chic_arch: armhf
|
||
|
zsh_chic:
|
||
|
users: "{{ default_user }}"
|
||
|
- hosts: registry
|
||
|
roles:
|
||
|
- role: docker-registry
|