22 lines
325 B
YAML
22 lines
325 B
YAML
---
|
|
- name: create the vms
|
|
hosts: hv00
|
|
gather_facts: true
|
|
become: true
|
|
roles:
|
|
- vm_deploy
|
|
|
|
# - name: python bootstrap
|
|
# hosts: k8s
|
|
# gather_facts: false
|
|
# become: true
|
|
# roles:
|
|
# - python-install
|
|
|
|
- name: vm hardening
|
|
hosts: k8s
|
|
gather_facts: true
|
|
become: true
|
|
roles:
|
|
- sshd
|
|
- firewall |