This commit is contained in:
Hrankin, Aleksandr (contracted)
2026-02-19 11:34:13 +00:00
commit f243f440c3
191 changed files with 6183 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
---
- name: enable snippets
hosts:
- dev-kyiv01-psy-proxmox-main-01
become: true
roles:
- role: proxmox/enable_snippets
# ansible-playbook playbooks/proxmox/enable_snippets.yml -i inventory.ini

View File

@@ -0,0 +1,11 @@
---
- name: download lxc template
hosts:
- dev-kyiv01-psy-proxmox-main-01
become: true
roles:
- role: proxmox/lxc/download_template
vars:
lxc_template_name: "debian-12-standard_12.12-1_amd64.tar.zst"
# ansible-playbook playbooks/proxmox/lxc/download_template.yml -i inventory.ini

View File

@@ -0,0 +1,11 @@
---
- name: shutdown lxc container
hosts:
- dev-kyiv01-psy-proxmox-main-01
become: true
roles:
- role: proxmox/lxc/shutdown
vars:
lxc_id: 200
# ansible-playbook playbooks/proxmox/lxc/shutdown.yml -i inventory.ini

View File

@@ -0,0 +1,9 @@
---
- name: configure proxmox no-subscription repo
hosts:
- dev-kyiv01-psy-proxmox-main-01
become: true
roles:
- proxmox/setup_no_subscription_repository
# ansible-playbook playbooks/proxmox/setup_proxmox_no_subscription_repository.yml -i inventory.ini

View File

@@ -0,0 +1,12 @@
---
- name: download vm iso
hosts:
- dev-kyiv01-psy-proxmox-main-01
become: true
roles:
- role: proxmox/vm/download_iso
vars:
vm_iso_name: "debian-13.2.0-amd64-netinst.iso"
vm_iso_url: "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/{{ vm_iso_name }}"
# ansible-playbook playbooks/proxmox/vm/download_iso.yml -i inventory.ini